:root {
  --ink: #08111f;
  --ink-soft: #152238;
  --blue: #0877ff;
  --blue-deep: #005de0;
  --ice: #eef6ff;
  --mist: #f5f8fc;
  --white: #ffffff;
  --muted: #667287;
  --line: rgba(8, 17, 31, .12);
  --display: "Unbounded", sans-serif;
  --body: "Manrope", sans-serif;
  --max: 1240px;
  --shadow: 0 30px 80px rgba(8, 17, 31, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p, summary, li { text-wrap: pretty; }
::selection { background: var(--blue); color: #fff; }

.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;
}
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 200; padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 12px; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid rgba(8,119,255,.42); outline-offset: 4px; }
.ui-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-icon, .format-icon, .list-icon { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.section-pad { max-width: var(--max); margin: 0 auto; padding: 120px 38px; }
.section-kicker { margin: 0 0 24px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .16em; line-height: 1.3; }
.section-kicker.light { color: #72b1ff; }
.section-title h2, .manifesto h2, .inside h2, .safety h2, .faq h2, .final-cta h2 {
  margin: 0; font-family: var(--display); font-size: clamp(44px, 6.1vw, 84px); line-height: 1.03; letter-spacing: -.055em;
}

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; padding: 16px 22px; pointer-events: none; transition: padding .35s ease; }
.nav-shell {
  width: min(100%, 1180px); height: 70px; margin: auto; padding: 0 10px 0 20px;
  display: grid; grid-template-columns: 150px 1fr auto; align-items: center;
  background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.82); border-radius: 22px;
  box-shadow: 0 10px 40px rgba(8,17,31,.06); backdrop-filter: blur(20px) saturate(170%); pointer-events: auto;
  transition: height .35s ease, box-shadow .35s ease, background .35s ease;
}
.site-header.scrolled { padding-top: 10px; }
.site-header.scrolled .nav-shell { height: 62px; background: rgba(255,255,255,.94); box-shadow: 0 16px 44px rgba(8,17,31,.11); }
.brand { position: relative; display: block; width: 116px; height: 48px; overflow: hidden; flex: 0 0 116px; }
.brand img { position: absolute; left: 0; top: -28px; width: 116px !important; height: 116px !important; max-width: none; }
.desktop-nav { justify-self: center; display: flex; gap: clamp(20px, 2.5vw, 38px); align-items: center; }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 700; color: #344056; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; border-radius: 2px; background: var(--blue); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.button { min-height: 48px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 15px; cursor: pointer; font-size: 13px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: #fff; box-shadow: 0 8px 24px rgba(8,17,31,.18); }
.button-dark:hover { box-shadow: 0 13px 30px rgba(8,17,31,.25); }
.button-blue { color: #fff; background: linear-gradient(135deg, #1788ff, #0062e8); box-shadow: 0 12px 28px rgba(8,119,255,.28); }
.button-blue:hover { box-shadow: 0 17px 36px rgba(8,119,255,.36); }
.button-large { min-height: 60px; padding: 0 28px; border-radius: 18px; }
.menu-button { display: none; width: 48px; height: 48px; padding: 0; border: 0; border-radius: 14px; background: var(--ink); cursor: pointer; }
.menu-button span { position: absolute; width: 20px; height: 2px; left: 14px; background: #fff; border-radius: 2px; transition: transform .25s ease; }
.menu-button span:first-child { transform: translateY(-4px); }
.menu-button span:last-child { transform: translateY(4px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-nav { display: none; }

.hero {
  position: relative; min-height: 900px; padding: 160px max(38px, calc((100vw - var(--max))/2 + 38px)) 88px;
  display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 38px; overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(8,119,255,.16), transparent 27%),
    linear-gradient(145deg, #fff 0%, #f7faff 52%, #edf5ff 100%);
}
.hero::before { content: ""; position: absolute; width: 700px; height: 700px; right: -350px; top: 80px; border: 1px solid rgba(8,119,255,.18); border-radius: 50%; box-shadow: 0 0 0 80px rgba(8,119,255,.025), 0 0 0 160px rgba(8,119,255,.02); }
.hero-noise { position: absolute; inset: 0; opacity: .22; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E"); }
.hero-copy { position: relative; z-index: 4; max-width: 600px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; padding: 9px 13px; border: 1px solid rgba(8,119,255,.18); border-radius: 999px; background: rgba(255,255,255,.72); color: #335172; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(8,119,255,.11); animation: live 2s ease-in-out infinite; }
.hero h1 { margin: 0 0 30px; font-family: var(--display); font-size: clamp(58px, 7.2vw, 104px); line-height: .92; letter-spacing: -.065em; }
.hero h1 span { display: inline-block; color: var(--blue); transform: rotate(-1.4deg); transform-origin: left; }
.hero-copy > p { max-width: 590px; margin-bottom: 32px; color: #556177; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; }
.text-link .ui-icon { width: 16px; height: 16px; }
.trust-line { margin-top: 36px; display: flex; align-items: center; gap: 12px; color: #7b8799; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.trust-line i { width: 3px; height: 3px; background: var(--blue); border-radius: 50%; }
.hero-stage { position: relative; height: 670px; z-index: 3; perspective: 1400px; transform-style: preserve-3d; }
.orbit { position: absolute; border: 1px solid rgba(8,119,255,.18); border-radius: 50%; transform: rotateX(68deg) rotateZ(-8deg); }
.orbit::after { content: ""; position: absolute; top: 50%; left: -5px; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 24px var(--blue); }
.orbit-one { width: 570px; height: 570px; left: 4%; top: 8%; animation: orbit 14s linear infinite; }
.orbit-two { width: 430px; height: 430px; left: 14%; top: 18%; animation: orbit 10s linear reverse infinite; }
.phone { position: absolute; transform-style: preserve-3d; }
.phone-edge { position: relative; width: 100%; height: 100%; padding: 8px; border-radius: 46px; background: linear-gradient(145deg, #232d3d, #05080e 48%, #64728a 100%); box-shadow: 0 42px 90px rgba(8,17,31,.28), inset 0 0 0 1px rgba(255,255,255,.28); overflow: hidden; }
.phone-edge::before { content: ""; position: absolute; inset: 1px; z-index: 3; border: 1px solid rgba(255,255,255,.2); border-radius: 45px; pointer-events: none; }
.phone-screen { position: absolute; inset: 8px; border-radius: 38px; overflow: hidden; background: #fff; }
.real-app-screen img, .hero-real-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-hero { width: 310px; height: 674px; left: 33%; top: 0; transform: rotate(2deg); z-index: 6; transition: transform .18s ease-out; filter: drop-shadow(28px 40px 36px rgba(8,17,31,.18)); }
.screen-shard { position: absolute; width: 208px; height: 450px; padding: 6px; overflow: hidden; border-radius: 32px; background: #162238; box-shadow: 0 26px 55px rgba(8,17,31,.2); }
.screen-shard img { width: 100%; height: 100%; object-fit: cover; border-radius: 27px; }
.shard-map { left: 2%; top: 122px; transform: rotateY(22deg) rotateZ(-13deg) translateZ(-80px); opacity: .78; z-index: 2; }
.shard-create { right: -4%; top: 114px; transform: rotateY(-24deg) rotateZ(13deg) translateZ(-100px); opacity: .72; z-index: 1; }
.floating-note { position: absolute; z-index: 10; min-width: 160px; padding: 14px 16px; display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: center; color: var(--ink); background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.85); border-radius: 18px; box-shadow: 0 18px 45px rgba(8,17,31,.14); backdrop-filter: blur(16px); animation: float 5s ease-in-out infinite; }
.floating-note b { font-size: 12px; line-height: 1.2; }
.floating-note > span:not(.avatar-stack) { grid-column: 2; color: #778397; font-size: 9px; }
.note-icon { grid-row: 1 / 3; width: 30px; height: 30px; color: var(--blue); fill: none; stroke: currentColor; }
.note-one { left: 0; top: 68px; }
.note-two { right: -1%; bottom: 95px; animation-delay: -2s; }
.avatar-stack { grid-row: 1 / 3; display: flex; padding-left: 12px; }
.avatar-stack i { width: 28px; height: 28px; margin-left: -12px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; background: var(--ice); color: var(--blue); font-style: normal; font-size: 9px; font-weight: 800; }
.brush-route { position: absolute; left: 0; right: 0; bottom: -24px; height: 150px; opacity: .95; pointer-events: none; }
.brush-route svg { width: 100%; height: 100%; }
.brush-route path { fill: none; stroke: var(--blue); stroke-width: 20; stroke-linecap: round; filter: drop-shadow(0 10px 18px rgba(8,119,255,.2)); }

.manifesto { position: relative; overflow: hidden; }
.manifesto::before { content: ""; position: absolute; right: -80px; bottom: 30px; width: 360px; height: 360px; border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 38px #f8fafd, 0 0 0 39px var(--line); z-index: -1; }
.manifesto-heading { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.motion-seal { width: 112px; height: 112px; padding: 16px; display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 5px; border-radius: 50%; border: 1px solid rgba(8,119,255,.24); color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .1em; line-height: 1; transform: rotate(8deg); box-shadow: inset 0 0 0 8px #f5f9ff; }
.motion-seal i { font-style: normal; }
.manifesto h2 { max-width: 1080px; }
.manifesto h2 em { color: var(--blue); font-style: normal; position: relative; }
.manifesto h2 em::after { content: ""; position: absolute; left: -2%; right: -3%; bottom: -8px; height: 9px; border-radius: 50%; background: var(--blue); transform: rotate(-1deg); opacity: .82; }
.manifesto-grid { margin-top: 58px; display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: end; }
.manifesto-grid > p { max-width: 540px; margin: 0; color: #5d687a; font-size: 18px; }
.statement { display: flex; flex-direction: column; align-items: flex-end; font-family: var(--display); text-transform: uppercase; }
.statement span { color: var(--blue); font-size: clamp(28px,4vw,54px); line-height: 1; }
.statement b { color: #c9d0da; font-size: clamp(18px,2.8vw,36px); text-decoration: line-through; text-decoration-thickness: 3px; }

.how { max-width: none; padding-left: max(38px, calc((100vw - var(--max))/2 + 38px)); padding-right: max(38px, calc((100vw - var(--max))/2 + 38px)); background: var(--mist); }
.how .section-title { max-width: var(--max); margin: 0 auto 48px; }
.steps { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 18px; perspective: 1200px; }
.step { min-height: 0; height: auto; padding: 14px; display: flex; flex-direction: column; justify-content: flex-start; border: 1px solid rgba(8,17,31,.08); border-radius: 30px; background: rgba(255,255,255,.9); box-shadow: 0 18px 50px rgba(8,17,31,.05); transform-style: preserve-3d; transition: box-shadow .3s ease, border-color .3s ease; }
.step:hover { box-shadow: 0 32px 75px rgba(8,17,31,.12); border-color: rgba(8,119,255,.2); }
.step > div:last-child { padding: 22px 14px 12px; transform: translateZ(22px); }
.step:first-child > div:last-child, .step:last-child > div:last-child { align-items: center; justify-content: center; text-align: center; transform: none; }
.step:first-child > div:last-child p, .step:last-child > div:last-child p { max-width: 360px; }
.step small { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.step h3 { margin: 13px 0 10px; font-family: var(--display); font-size: 22px; line-height: 1.2; letter-spacing: -.035em; }
.step > div:last-child p { margin: 0; color: #657185; font-size: 14px; }
.step-visual { height: 292px; position: relative; overflow: hidden; border-radius: 22px; transform: translateZ(34px); }
.radar, .chat-demo { transform: none; }
.radar { background: radial-gradient(circle at 50% 50%, rgba(8,119,255,.14), transparent 46%), #eaf4ff; }
.radar::before, .radar::after, .radar > span { content: ""; position: absolute; left: 50%; top: 50%; border: 1px solid rgba(8,119,255,.22); border-radius: 50%; transform: translate(-50%,-50%); }
.radar::before { width: 270px; height: 270px; }
.radar::after { width: 184px; height: 184px; }
.radar > span:first-child { width: 100px; height: 100px; }
.radar > span:nth-child(2) { width: 220px; height: 1px; border: 0; background: rgba(8,119,255,.15); border-radius: 0; }
.radar > i { position: absolute; left: 50%; top: 50%; z-index: 2; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; color: #fff; background: var(--blue); box-shadow: 0 15px 30px rgba(8,119,255,.3); transform: translate(-50%,-50%) rotate(5deg); font-style: normal; }
.radar .feature-icon { width: 24px; height: 24px; }
.radar > b { position: absolute; right: 18px; top: 20px; padding: 8px 10px; border-radius: 12px; background: #fff; box-shadow: 0 8px 24px rgba(8,17,31,.08); color: #526075; font-size: 9px; line-height: 1.35; }
.ticket { margin: 18px 10px; height: 256px; padding: 30px 25px; overflow: visible; background: linear-gradient(150deg,#0e7dff,#005bdc); color: #fff; border-radius: 26px; transform: translateZ(34px) rotate(-4deg); box-shadow: 0 25px 45px rgba(8,119,255,.25); }
.ticket::before, .ticket::after { content: ""; position: absolute; top: 63%; width: 24px; height: 24px; border-radius: 50%; background: #fff; }
.ticket::before { left: -12px; }.ticket::after { right: -12px; }
.ticket > span { font-size: 9px; font-weight: 800; letter-spacing: .13em; opacity: .72; }
.ticket h4 { max-width: 230px; margin: 26px 0 8px; font-family: var(--display); font-size: 24px; line-height: 1.15; }
.ticket > p { margin: 0; font-size: 11px; opacity: .75; }
.ticket > div { position: absolute; left: 28px; bottom: 27px; display: flex; }
.ticket > div i, .ticket > div b { width: 32px; height: 32px; margin-left: -7px; display: grid; place-items: center; border: 2px solid #0870ef; border-radius: 50%; background: #fff; color: var(--blue); font-style: normal; font-size: 9px; }
.ticket > div i:first-child { margin-left: 0; }
.chat-demo { padding: 34px 20px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(180deg,#101c30,#08111f); }
.chat-demo::before { content: ""; position: absolute; width: 190px; height: 190px; right: -50px; top: -60px; border-radius: 50%; background: var(--blue); filter: blur(55px); opacity: .35; }
.bubble { position: relative; max-width: 82%; margin-bottom: 15px; padding: 13px 15px; border-radius: 17px; font-size: 11px; box-shadow: 0 10px 24px rgba(0,0,0,.16); }
.bubble.left { background: #fff; border-bottom-left-radius: 5px; }
.bubble.right { margin-left: auto; color: #fff; background: var(--blue); border-bottom-right-radius: 5px; }
.typing { width: 61px; padding: 13px; display: flex; gap: 4px; background: rgba(255,255,255,.12); border-radius: 17px; }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: typing 1.3s ease-in-out infinite; }
.typing i:nth-child(2) { animation-delay: .15s; }.typing i:nth-child(3) { animation-delay: .3s; }

.inside { max-width: none; min-height: 850px; padding-left: max(38px, calc((100vw - var(--max))/2 + 38px)); padding-right: max(38px, calc((100vw - var(--max))/2 + 38px)); display: grid; grid-template-columns: minmax(320px, 550px) minmax(400px, 1fr); align-items: center; gap: 68px; overflow: hidden; color: #fff; background: radial-gradient(circle at 75% 50%, #153762 0, #0d1d33 30%, #08111f 66%); }
.inside-copy { justify-self: end; max-width: 550px; }
.inside-copy > p:not(.section-kicker) { max-width: 500px; margin: 28px 0 34px; color: #aebad0; font-size: 17px; }
.screen-controls { display: flex; flex-wrap: wrap; gap: 8px; }
.screen-tab { min-height: 42px; padding: 0 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; color: #a9b5c8; background: rgba(255,255,255,.05); cursor: pointer; font-size: 11px; font-weight: 800; transition: .25s ease; }
.screen-tab:hover { color: #fff; border-color: rgba(255,255,255,.32); }
.screen-tab.active { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 12px 30px rgba(8,119,255,.25); }
.screen-showcase { position: relative; height: 710px; display: grid; place-items: center; perspective: 1200px; }
.showcase-halo { position: absolute; width: 660px; height: 660px; border: 1px solid rgba(102,174,255,.18); border-radius: 50%; box-shadow: 0 0 0 70px rgba(8,119,255,.03), 0 0 0 140px rgba(8,119,255,.025); }
.showcase-halo::before, .showcase-halo::after { content: ""; position: absolute; border-radius: 50%; background: var(--blue); box-shadow: 0 0 25px var(--blue); }
.showcase-halo::before { width: 9px; height: 9px; left: 10%; top: 18%; }.showcase-halo::after { width: 6px; height: 6px; right: 6%; bottom: 30%; }
.phone-showcase { width: 320px; height: 696px; transform: rotateY(-5deg) rotateX(2deg); filter: drop-shadow(35px 45px 45px rgba(0,0,0,.32)); }
.speaker { display: none; }
.screen-panel { opacity: 0; visibility: hidden; transform: translateX(20px) scale(.98); transition: opacity .45s ease, transform .45s ease, visibility .45s; }
.screen-panel.active { opacity: 1; visibility: visible; transform: none; }

.safety { max-width: none; padding-left: max(38px, calc((100vw - var(--max))/2 + 38px)); padding-right: max(38px, calc((100vw - var(--max))/2 + 38px)); background: #eef5ff; }
.safety-card { position: relative; max-width: var(--max); min-height: 700px; margin: auto; padding: 58px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 54px; overflow: hidden; border-radius: 42px; color: #fff; background: linear-gradient(145deg,#101e35 0%,#07111f 54%,#061a34 100%); box-shadow: 0 40px 100px rgba(8,17,31,.24); }
.safety-card::before { content: ""; position: absolute; }
.safety-copy { position: relative; z-index: 3; }
.safety h2 { font-size: clamp(43px,5vw,72px); }
.safety-copy > p:not(.section-kicker) { margin: 26px 0 34px; color: #aebbd0; font-size: 17px; }
.safety-copy ul { padding: 0; margin: 0; display: grid; gap: 13px; list-style: none; }
.safety-copy li { display: flex; align-items: center; gap: 13px; color: #d9e4f3; font-size: 13px; font-weight: 700; }
.list-icon { width: 20px; height: 20px; color: #63aaff; flex: 0 0 auto; }
.privacy-visual { --rx: 0deg; --ry: 0deg; position: relative; height: 620px; perspective: 1400px; transform: rotateX(var(--rx)) rotateY(var(--ry)); transform-style: preserve-3d; transition: transform .18s ease-out; }
.map-glow { position: absolute; inset: 9% -8%; background: radial-gradient(ellipse, rgba(8,119,255,.42), transparent 65%); filter: blur(18px); transform: translateZ(-80px); }
.map-phone { position: absolute; width: 268px; height: 582px; left: 50%; top: 10px; transform: translateX(-46%) rotateZ(5deg) translateZ(40px); }
.map-phone .phone-edge { border-radius: 40px; }
.map-phone .phone-edge::before { border-radius: 39px; }
.map-phone .phone-screen { border-radius: 32px; }
.map-privacy-badge, .map-location-tag { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.55); background: rgba(255,255,255,.91); color: var(--ink); box-shadow: 0 22px 50px rgba(0,0,0,.26); backdrop-filter: blur(18px); }
.map-privacy-badge { left: 0; top: 88px; padding: 14px 16px; border-radius: 19px; transform: translateZ(100px) rotate(-3deg); }
.map-privacy-badge > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: var(--blue); color: #fff; }
.map-privacy-badge .feature-icon { width: 20px; height: 20px; }
.map-privacy-badge small, .map-location-tag small { display: block; color: #7c899c; font-size: 7px; font-weight: 800; letter-spacing: .11em; }
.map-privacy-badge b, .map-location-tag b { display: block; margin-top: 2px; font-size: 10px; }
.map-location-tag { right: -8px; bottom: 80px; padding: 13px 16px; border-radius: 18px; transform: translateZ(90px) rotate(2deg); }
.map-location-tag > i { width: 11px; height: 11px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 7px rgba(8,119,255,.12), 0 0 20px var(--blue); animation: live 2s ease-in-out infinite; }

.formats { max-width: none; padding-left: 0; padding-right: 0; overflow: hidden; background: #fff; }
.formats > .section-title, .formats > .format-grid { max-width: var(--max); margin-left: auto; margin-right: auto; padding-left: 38px; padding-right: 38px; }
.marquee { margin: 62px 0 68px; padding: 18px 0; overflow: hidden; color: #fff; background: var(--blue); transform: rotate(-1.2deg) scale(1.02); box-shadow: 0 14px 30px rgba(8,119,255,.2); }
.marquee-track { width: max-content; display: flex; align-items: center; animation: marquee 30s linear infinite; will-change: transform; }
.marquee-group { min-width: 100vw; padding: 0 24px; display: flex; flex: 0 0 auto; align-items: center; justify-content: space-around; gap: 26px; }
.marquee span { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: .04em; }
.marquee i { font-style: normal; opacity: .6; }
.format-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); align-items: stretch; gap: 14px; }
.format-grid article { position: relative; isolation: isolate; min-width: 0; min-height: 240px; height: 100%; padding: 23px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(145deg,#fff,#f7faff); transition: border-color .3s ease, box-shadow .3s ease, translate .3s ease; }
.format-grid article::before { content: ""; position: absolute; z-index: -1; width: 170px; height: 170px; right: -82px; top: -88px; border: 1px solid rgba(8,119,255,.11); border-radius: 50%; box-shadow: 0 0 0 22px rgba(8,119,255,.025); }
.format-grid article:hover { border-color: rgba(8,119,255,.25); box-shadow: 0 28px 65px rgba(8,17,31,.11); }
.format-grid article > span { width: 64px; height: 64px; margin-bottom: auto; display: grid; place-items: center; border-radius: 20px; color: var(--blue); background: var(--ice); transform: rotate(-4deg); transition: transform .3s cubic-bezier(.2,.7,.2,1), background .3s ease; }
.format-grid article:hover > span { transform: translateY(-4px) rotate(-4deg); background: #e5f1ff; }
.format-icon { width: 30px; height: 30px; }
.format-grid h3 { max-width: 100%; min-width: 0; margin: 30px 0 8px; font-family: var(--display); font-size: clamp(14px,1.08vw,17px); line-height: 1.3; letter-spacing: -.025em; overflow-wrap: normal; word-break: normal; }
.format-grid p { max-width: 100%; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; overflow-wrap: break-word; }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; border-top: 1px solid var(--line); }
.faq .section-title { position: sticky; top: 120px; }
.faq .section-title::after { content: "?"; position: absolute; z-index: -1; left: -30px; top: 20px; color: #f1f5fa; font-family: var(--display); font-size: 260px; line-height: 1; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 110px; padding: 28px 4px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font-family: var(--display); font-size: 17px; font-weight: 600; line-height: 1.35; }
.accordion summary::-webkit-details-marker { display: none; }
.faq-toggle { position: relative; width: 42px; height: 42px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; transition: background .25s ease, transform .3s ease; }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; left: 13px; top: 20px; width: 16px; height: 2px; background: var(--ink); transition: transform .3s ease, background .25s ease; }
.faq-toggle::after { transform: rotate(90deg); }
details[open] .faq-toggle { background: var(--blue); border-color: var(--blue); transform: rotate(180deg); }
details[open] .faq-toggle::before, details[open] .faq-toggle::after { background: #fff; }
details[open] .faq-toggle::after { transform: rotate(0); }
.accordion details > p { max-width: 620px; margin: -8px 0 34px; padding-right: 70px; color: var(--muted); }

.final-cta { position: relative; max-width: none; min-height: 680px; padding-left: 38px; padding-right: 38px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; text-align: center; background: linear-gradient(180deg,#f4f9ff,#e9f3ff); }
.final-cta::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(8,119,255,.2); box-shadow: 0 0 0 70px rgba(8,119,255,.035), 0 0 0 140px rgba(8,119,255,.025); animation: breathe 5s ease-in-out infinite; }
.final-cta > * { position: relative; z-index: 2; }
.final-cta > img { width: 180px; height: 105px; margin-bottom: 14px; object-fit: cover; object-position: 50% 44%; }
.final-cta h2 { max-width: 1000px; }
.final-cta h2 span { color: var(--blue); }
.final-cta > p { margin: 25px 0 30px; color: #5c6980; font-size: 17px; }
.final-line { position: absolute; z-index: 1; width: 120%; height: 150px; bottom: -40px; border-top: 18px solid var(--blue); border-radius: 50% 50% 0 0; transform: rotate(-2deg); }

footer { position: relative; padding: 88px max(38px, calc((100vw - var(--max))/2 + 38px)) 0; overflow: hidden; color: var(--ink); background: #fff; }
.footer-route { position: absolute; left: 0; right: 0; top: 0; height: 80px; border-top: 1px solid var(--line); }
.footer-route::before { content: ""; position: absolute; left: 7%; right: 7%; top: 38px; height: 1px; background: linear-gradient(90deg,transparent,rgba(8,119,255,.35),transparent); }
.footer-route span, .footer-route i, .footer-route b { position: absolute; top: 34px; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 7px rgba(8,119,255,.08); }
.footer-route span { left: 18%; }.footer-route i { left: 52%; }.footer-route b { right: 14%; }
.footer-main { max-width: var(--max); margin: auto; padding: 40px 0 82px; display: grid; grid-template-columns: .75fr 1.3fr .75fr; gap: 70px; align-items: end; }
.footer-identity { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; }
.footer-logo { position: relative; display: block; width: 190px; height: 98px; overflow: hidden; }
.footer-logo img { position: absolute; left: 0; top: -39px; width: 190px; height: 190px; max-width: none; }
.footer-identity p { margin: 50px 0 0; color: #687489; font-size: 13px; font-weight: 700; }
.footer-label { display: block; margin-bottom: 18px; color: #8691a2; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.footer-invite { padding-left: 52px; border-left: 1px solid var(--line); }
.footer-invite h2 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(30px,3.5vw,50px); line-height: 1.05; letter-spacing: -.045em; }
.footer-invite h2 em { color: var(--blue); font-style: normal; }
.footer-contact { align-self: end; }
.footer-contact > a { font-family: var(--display); font-size: 14px; font-weight: 600; border-bottom: 2px solid var(--blue); }
.footer-contact p { margin: 18px 0 0; color: #7b8698; font-size: 12px; }
.footer-bottom { max-width: var(--max); min-height: 86px; margin: auto; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 35px; border-top: 1px solid var(--line); color: #7b8698; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.footer-bottom > div { display: flex; gap: 24px; }
.footer-bottom a { transition: color .2s ease; }.footer-bottom a:hover { color: var(--blue); }
.to-top { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; background: #fff; cursor: pointer; transition: .25s ease; }
.to-top:hover { color: #fff; background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.to-top-icon { transform: rotate(180deg); }

.download-modal { width: min(92vw, 590px); padding: 44px; overflow: hidden; border: 1px solid rgba(255,255,255,.8); border-radius: 34px; color: var(--ink); background: radial-gradient(circle at 85% 4%,rgba(8,119,255,.13),transparent 30%),linear-gradient(155deg,#fff,#f5f9ff); box-shadow: 0 40px 120px rgba(0,0,0,.35); }
.download-modal::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg,var(--blue),#7db9ff,var(--blue)); }
.download-modal::backdrop { background: rgba(4,10,19,.72); backdrop-filter: blur(8px); }
.modal-close { position: absolute; right: 20px; top: 20px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 14px; background: #fff; cursor: pointer; }
.modal-close span::before, .modal-close span::after { content: ""; position: absolute; left: 12px; top: 19px; width: 18px; height: 2px; background: var(--ink); }
.modal-close span::before { transform: rotate(45deg); }.modal-close span::after { transform: rotate(-45deg); }
.modal-brand { width: 190px; height: 90px; margin: -5px 0 24px; display: flex; align-items: flex-end; overflow: hidden; position: relative; }
.modal-brand img { position: absolute; left: 0; top: -39px; width: 190px; height: 190px; max-width: none; }
.modal-brand span { position: absolute; left: 4px; bottom: 0; color: #7b8799; font-size: 7px; font-weight: 800; letter-spacing: .14em; }
.download-modal h2 { margin: 0; font-family: var(--display); font-size: clamp(36px,6vw,54px); line-height: 1.04; letter-spacing: -.05em; }
.download-modal > p:not(.section-kicker) { margin: 20px 0 26px; color: var(--muted); }
.email-field { display: flex; gap: 10px; }
.email-field input { min-width: 0; flex: 1; height: 52px; padding: 0 16px; border: 1px solid var(--line); border-radius: 15px; outline: none; }
.email-field input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,119,255,.1); }
.consent { margin-top: 14px; display: flex; align-items: flex-start; gap: 9px; color: #748094; font-size: 11px; }
.consent input { margin-top: 3px; accent-color: var(--blue); }
.consent a { color: var(--blue); text-decoration: underline; }
.form-success { display: none; }
.download-modal.success form, .download-modal.success > p:not(.section-kicker) { display: none; }
.download-modal.success .form-success { margin-top: 28px; display: block; }
.form-success > span { width: 52px; height: 52px; margin-bottom: 16px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: var(--blue); }
.success-icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.form-success b { font-family: var(--display); font-size: 18px; }.form-success p { color: var(--muted); }.form-success .button { margin-top: 5px; }

.reveal { opacity: 0; translate: 0 22px; transition: opacity .68s cubic-bezier(.2,.7,.2,1), translate .68s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; translate: 0 0; }
section.reveal { translate: none; }
@keyframes live { 50% { box-shadow: 0 0 0 9px rgba(8,119,255,0), 0 0 18px rgba(8,119,255,.35); } }
@keyframes float { 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes orbit { to { transform: rotateX(68deg) rotateZ(352deg); } }
@keyframes typing { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes breathe { 50% { transform: scale(1.04); opacity: .72; } }

@media (min-width: 921px) {
  .steps { align-items: stretch; }
  .step { height: 100%; display: grid; grid-template-columns: minmax(0,1fr); grid-template-rows: auto 1fr; justify-content: stretch; }
  .step-visual { width: 100%; margin: 0; }
  .ticket { width: 100%; height: 292px; margin: 0; transform: translateZ(34px) rotate(-2.5deg) scale(.94); transform-origin: center; }
  .step > div:last-child { min-height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transform: none; }
  .step > div:last-child p { max-width: 400px; }
}

@media (min-width: 1500px) {
  :root { --max: 1460px; }
  .nav-shell { width: min(100%,1400px); }
  .hero { grid-template-columns: .9fr 1.1fr; gap: 70px; }
  .hero-copy { max-width: 650px; }
  .hero-stage { justify-self: stretch; }
  .steps { gap: 22px; }
  .step { min-height: 0; }
  .step-visual { height: 305px; }
  .safety-card { min-height: 720px; }
  .footer-main { gap: 90px; }
}

@media (min-width: 2000px) {
  :root { --max: 1680px; }
  .nav-shell { width: min(100%,1600px); }
  .hero { min-height: 960px; grid-template-columns: .92fr 1.08fr; gap: 110px; }
  .hero h1 { font-size: 112px; }
  .hero-stage { transform: scale(1.06); transform-origin: center; }
  .section-pad { padding-top: 108px; padding-bottom: 108px; }
  .steps { gap: 26px; }
  .step { min-height: 0; }
  .step-visual { height: 318px; }
  .inside { min-height: 900px; gap: 110px; }
  .safety-card { min-height: 740px; padding-left: 76px; padding-right: 76px; }
  .format-grid { gap: 20px; }
  .format-grid article { min-height: 260px; }
}

@media (max-width: 1120px) {
  .desktop-nav { gap: 17px; }.nav-shell { grid-template-columns: 132px 1fr auto; }
  .hero { grid-template-columns: .92fr 1.08fr; }.hero-stage { transform: scale(.9); transform-origin: center right; }
  .steps { gap: 12px; }.step { min-height: 0; }.step-visual { height: 282px; }
  .format-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }.format-grid article { min-height: 224px; }
  .inside { gap: 30px; }.safety-card { padding: 58px 48px; gap: 30px; }
  .footer-main { gap: 40px; }.footer-invite { padding-left: 35px; }
}

@media (max-width: 920px) {
  .section-pad { padding-top: 92px; padding-bottom: 92px; }
  .nav-shell { grid-template-columns: 1fr auto; }.desktop-nav, .nav-cta { display: none; }
  .menu-button { position: relative; display: block; }
  .mobile-nav { position: absolute; left: 22px; right: 22px; top: 94px; padding: 18px; display: grid; gap: 5px; background: rgba(255,255,255,.97); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); backdrop-filter: blur(20px); pointer-events: auto; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease; }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav a { padding: 13px 10px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }
  .mobile-nav .button { margin-top: 8px; }
  .hero { min-height: auto; padding-top: 150px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { margin: auto; }.hero h1 { font-size: clamp(60px,11vw,92px); }.hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-line { justify-content: center; }.hero-stage { width: min(100%,650px); height: 650px; margin: 15px auto 0; transform: scale(.92); transform-origin: top center; }
  .manifesto-grid { gap: 34px; }
  .steps { grid-template-columns: 1fr; gap: 14px; }.step { min-height: 0; display: grid; grid-template-columns: .92fr 1.08fr; align-items: stretch; }.step > div:last-child { display: flex; flex-direction: column; justify-content: center; }.step-visual { height: 292px; }
  .ticket { width: 100%; height: 292px; margin: 0; transform: translateZ(34px) rotate(-2.5deg) scale(.94); transform-origin: center; }
  .inside { grid-template-columns: 1fr; padding-top: 92px; text-align: center; }.inside-copy { justify-self: center; }.inside-copy > p { margin-left: auto; margin-right: auto; }.screen-controls { justify-content: center; }.screen-showcase { height: 690px; }
  .screen-tab.active { box-shadow: none; }
  .safety-card { grid-template-columns: 1fr; padding: 52px; }.safety-copy { max-width: 650px; }.privacy-visual { width: min(100%,560px); margin: auto; }
  .format-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }.format-grid article { min-height: 224px; }
  .faq { grid-template-columns: 1fr; gap: 55px; }.faq .section-title { position: relative; top: auto; }
  footer { text-align: center; }.footer-main { grid-template-columns: 1fr; justify-items: center; gap: 34px; }.footer-identity { width: 100%; grid-row: auto; align-items: center; }.footer-logo { margin-left: auto; margin-right: auto; }.footer-invite { width: 100%; max-width: 560px; padding: 30px 24px; display: flex; flex-direction: column; align-items: center; border: 1px solid rgba(8,119,255,.12); border-radius: 28px; background: linear-gradient(145deg,rgba(255,255,255,.92),rgba(238,246,255,.92)); }.footer-contact { grid-column: auto; display: flex; flex-direction: column; align-items: center; }.footer-bottom { grid-template-columns: 1fr; justify-items: center; }.footer-bottom > div { justify-content: center; }.footer-bottom .to-top { display: none; }
}

@media (max-width: 650px) {
  .section-pad { padding: 72px 20px; }
  .section-title h2, .manifesto h2, .inside h2, .safety h2, .faq h2, .final-cta h2 { font-size: clamp(38px,11.3vw,57px); line-height: 1.06; }
  .site-header { padding: 10px 12px; }.nav-shell { height: 60px; padding: 0 6px 0 14px; border-radius: 18px; }.site-header.scrolled { padding-top: 7px; }.site-header.scrolled .nav-shell { height: 58px; }
  .brand { width: 104px; height: 44px; }.brand img { width: 104px !important; height: 104px !important; top: -25px; }
  .menu-button { width: 46px; height: 46px; }.menu-button span { left: 13px; }
  .mobile-nav { left: 12px; right: 12px; top: 78px; }
  .button-large { min-height: 56px; width: 100%; }
  .hero { padding: 120px 20px 60px; text-align: left; }.hero::before { display: none; }.eyebrow { margin-bottom: 22px; font-size: 9px; }.hero h1 { font-size: clamp(49px,15.2vw,72px); line-height: .95; }.hero-copy > p { font-size: 16px; line-height: 1.65; }.hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }.text-link { justify-content: center; }.trust-line { justify-content: flex-start; flex-wrap: wrap; gap: 8px 10px; font-size: 8px; }
  .hero-stage { height: 550px; margin-top: 28px; transform: scale(.82); transform-origin: top center; width: 122%; margin-left: -11%; }.phone-hero { left: 28%; }.shard-map { left: -3%; }.shard-create { right: -8%; }.floating-note { transform: scale(.9); }.note-one { left: 1%; }.note-two { right: 0; bottom: 64px; }.orbit-one { left: -8%; }
  .brush-route { height: 90px; bottom: -10px; }.brush-route path { stroke-width: 12; }
  .manifesto-heading { align-items: flex-start; }.motion-seal { width: 72px; height: 72px; padding: 9px; font-size: 6px; flex: 0 0 auto; }.manifesto h2 br { display: none; }.manifesto-grid { margin-top: 34px; grid-template-columns: 1fr; gap: 24px; }.manifesto-grid > p { font-size: 15px; }.statement { align-items: flex-start; }
  .how { padding-left: 20px; padding-right: 20px; }.how .section-title { margin-bottom: 30px; }.steps { gap: 12px; }.step { display: flex; align-items: stretch; padding: 12px; border-radius: 24px; transform: none; transform-style: flat; }.step-visual { width: 100%; height: 258px; border-radius: 18px; transform: none; }.step > div:last-child { padding: 18px 8px 8px; transform: none; }.step h3 { font-size: 19px; margin-top: 10px; }.step > div:last-child p { font-size: 13px; }.ticket { width: auto; margin: 14px 8px; height: 230px; padding: 26px 22px; transform: rotate(-2deg); }
  .inside { padding: 72px 20px; }.inside-copy { text-align: left; }.inside-copy > p:not(.section-kicker) { margin: 20px 0 24px; font-size: 15px; }.screen-controls { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }.screen-tab { flex: 0 0 auto; }.screen-showcase { width: 100%; height: 590px; }.showcase-halo { width: 440px; height: 440px; }.phone-showcase { width: 264px; height: 574px; }.phone-edge { border-radius: 40px; }.phone-screen { border-radius: 32px; }
  .safety { padding-left: 12px; padding-right: 12px; background: #fff; }.safety-card { min-height: 0; padding: 46px 20px 30px; border-radius: 32px; }.safety-copy { padding: 0 4px; }.safety-copy > p:not(.section-kicker) { font-size: 15px; }.safety-copy li { align-items: flex-start; }.privacy-visual { height: 560px; }.map-phone { width: 235px; height: 511px; left: 48%; }.map-privacy-badge { left: -1px; top: 75px; padding: 11px; }.map-location-tag { right: -3px; bottom: 68px; padding: 11px 13px; }.map-privacy-badge b, .map-location-tag b { font-size: 9px; }
  .formats > .section-title, .formats > .format-grid { padding-left: 20px; padding-right: 20px; }.marquee { margin: 38px 0 42px; }.format-grid { grid-template-columns: 1fr; gap: 10px; }.format-grid article { min-height: 184px; padding: 20px; }.format-grid article > span { width: 56px; height: 56px; border-radius: 18px; }.format-grid h3 { margin-top: 18px; }
  .faq { gap: 36px; }.faq .section-title::after { font-size: 160px; }.accordion summary { min-height: 92px; padding: 22px 0; font-size: 14px; }.faq-toggle { width: 38px; height: 38px; }.faq-toggle::before, .faq-toggle::after { left: 11px; top: 18px; }.accordion details > p { padding-right: 10px; font-size: 14px; }
  .final-cta { min-height: 590px; padding: 74px 20px; }.final-cta::before { width: 370px; height: 370px; }.final-cta > img { width: 140px; height: 84px; }.final-cta > p { font-size: 15px; }.final-cta .button { width: auto; }
  footer { padding: 74px 20px 0; text-align: center; background: radial-gradient(circle at 50% 38%,rgba(8,119,255,.07),transparent 34%),#fff; }.footer-main { padding: 16px 0 48px; grid-template-columns: 1fr; justify-items: center; gap: 34px; }.footer-identity { width: 100%; grid-row: auto; align-items: center; }.footer-logo { width: 160px; height: 84px; margin: 0 auto; }.footer-logo img { width: 160px; height: 160px; top: -33px; }.footer-identity p { margin-top: 16px; }.footer-invite { width: 100%; max-width: 430px; padding: 30px 20px; display: flex; flex-direction: column; align-items: center; border: 1px solid rgba(8,119,255,.12); border-radius: 28px; background: linear-gradient(145deg,rgba(255,255,255,.92),rgba(238,246,255,.92)); }.footer-invite h2 { max-width: 360px; font-size: 33px; }.footer-contact { grid-column: auto; display: flex; flex-direction: column; align-items: center; }.footer-bottom { padding: 22px 0 28px; grid-template-columns: 1fr; justify-items: center; gap: 13px; }.footer-bottom > div { align-items: center; flex-direction: column; gap: 7px; }
  .download-modal { padding: 32px 20px 24px; border-radius: 26px; }.email-field { flex-direction: column; }.email-field .button { width: 100%; }.modal-brand { width: 160px; height: 76px; margin-bottom: 20px; }.modal-brand img { width: 160px; height: 160px; top: -33px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 46px; }.hero-stage { transform: scale(.72); width: 138%; margin-left: -19%; height: 500px; }.hero-copy > p { font-size: 15px; }
  .map-privacy-badge { transform: translateZ(100px) rotate(-3deg) scale(.9); transform-origin: left; }.map-location-tag { transform: translateZ(90px) rotate(2deg) scale(.9); transform-origin: right; }
}

@media (hover: none), (pointer: coarse) {
  .step, .format-grid article, .privacy-visual { transform: none; transform-style: flat; }
  .step-visual, .step > div:last-child, .format-grid article > span, .format-grid h3, .format-grid p { transform: none; }
}

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