:root {
  --paper: #eef3ff;
  --white: #fff;
  --ink: #10131a;
  --muted: #667083;
  --blue: #1e61ff;
  --blue-dark: #0739b8;
  --blue-pale: #dce7ff;
  --night: #080d18;
  --line: rgba(16, 19, 26, .15);
  --mono: "JetBrains Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.page-transition { position: fixed; z-index: 1900; inset: 0; pointer-events: none; background: var(--blue); transform: scaleY(0); transform-origin: bottom center; will-change: transform; }

.grain {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.preloader {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 22px;
  color: white;
  background: var(--blue);
  transition: transform .9s cubic-bezier(.76, 0, .24, 1);
}
.preloader.done { transform: translateY(-105%); }
.preloader-mark { display: flex; align-items: center; font-size: clamp(68px, 10vw, 140px); font-weight: 800; line-height: .8; letter-spacing: -.1em; }
.preloader-mark b { color: #9dbeff; }
.preloader p { margin: 0; font: 500 11px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.loading-dots::after { content: ""; animation: dots 1.2s steps(4, end) infinite; }

.header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 2vw;
  right: 2vw;
  height: 66px;
  padding: 8px 9px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 18px;
  background: rgba(242,246,255,.72);
  box-shadow: 0 16px 40px rgba(15,34,77,.08);
  backdrop-filter: blur(18px);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), background .3s ease;
}
.header.hidden { transform: translateY(-130%); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.04em; }
.brand img { width: 40px; height: 40px; border-radius: 12px; object-fit: cover; }
.brand-icon { width: 40px; height: 40px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 12px; font-size: 14px; letter-spacing: -.08em; }
.brand-name { font-size: 15px; }
nav { display: flex; gap: 34px; font-size: 12px; font-weight: 700; }
nav a { position: relative; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .45s cubic-bezier(.2,.8,.2,1); }
nav a:hover::after { right: 0; }
.nav-cta { min-height: 46px; padding: 0 18px; display: inline-flex; align-items: center; gap: 16px; color: white; background: var(--ink); border-radius: 13px; font-size: 12px; font-weight: 700; transition: background .45s ease, box-shadow .45s ease; }
.nav-cta:hover { background: var(--blue); box-shadow: 0 14px 34px rgba(30,97,255,.22); }
.header-action { min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; color: white; background: var(--blue); border-radius: 12px; font-size: 12px; font-weight: 700; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 120px 5vw 42px;
  background:
    radial-gradient(circle at 72% 40%, rgba(93,139,255,.28), transparent 27%),
    linear-gradient(135deg, #f7f9ff 0%, #e7edfa 55%, #d9e5ff 100%);
}
.hero-topline { position: absolute; top: 112px; left: 5vw; right: 5vw; display: flex; justify-content: space-between; font: 500 10px/1 var(--mono); letter-spacing: .12em; }
.status { display: flex; align-items: center; gap: 8px; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: #19b86a; box-shadow: 0 0 0 5px rgba(25,184,106,.12); }
.hero-copy { position: relative; z-index: 4; width: min(63vw, 1010px); padding-top: 15vh; }
.kicker, .section-label, .side-note { font: 600 11px/1.4 var(--mono); letter-spacing: .12em; }
.kicker { color: var(--blue); }
.hero h1 { margin: 18px 0 24px; font-size: clamp(76px, 10.8vw, 178px); line-height: .79; letter-spacing: -.085em; font-weight: 800; }
.hero-word { display: block; opacity: 0; transform: translateY(80px); }
.hero-word.accent { color: var(--blue); }
.hero-lead { max-width: 510px; margin: 0 0 34px 6px; color: #4f5b70; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.65; }
.primary-button {
  width: fit-content;
  min-height: 60px;
  padding: 0 12px 0 23px;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  color: white;
  background: var(--blue);
  border-radius: 15px;
  box-shadow: 0 20px 45px rgba(30,97,255,.25);
  font-size: 13px;
  font-weight: 800;
  transform: translate3d(0,0,0);
  transition: background .45s ease, box-shadow .45s cubic-bezier(.2,.8,.2,1);
}
.primary-button:hover { background: #124fe1; box-shadow: 0 26px 55px rgba(30,97,255,.38); }
.primary-button b { width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue); background: white; border-radius: 10px; font-size: 18px; }

.mascot-stage {
  position: absolute;
  z-index: 3;
  width: min(45vw, 720px);
  height: min(76vh, 780px);
  right: 2vw;
  bottom: 0;
  transform-origin: center bottom;
}
.mascot-stage img { position: absolute; z-index: 2; width: 105%; height: 100%; left: 0; bottom: 0; object-fit: contain; object-position: bottom; filter: drop-shadow(0 42px 45px rgba(17,46,110,.2)); }
.mascot-halo { position: absolute; z-index: 0; width: 82%; aspect-ratio: 1; left: 11%; top: 10%; border-radius: 50%; background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(168,195,255,.25)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.85), 0 40px 100px rgba(40,93,198,.16); }
.mascot-caption { position: absolute; z-index: 3; top: 24%; left: -1%; display: flex; flex-direction: column; gap: 5px; font: 500 9px/1.2 var(--mono); letter-spacing: .08em; transform: rotate(-90deg); transform-origin: left top; }
.mascot-caption span:last-child { color: var(--blue); }
.speech { position: absolute; z-index: 4; top: 23%; right: 0; padding: 13px 16px; display: flex; gap: 9px; border: 1px solid rgba(255,255,255,.8); border-radius: 15px 15px 15px 3px; background: rgba(255,255,255,.7); box-shadow: 0 16px 32px rgba(31,53,94,.12); backdrop-filter: blur(12px); }
.speech span { color: #19b86a; font-size: 9px; }
.speech p { margin: 0; font: 600 11px/1.5 var(--mono); }
.signal { position: absolute; z-index: 1; border: 1px solid rgba(30,97,255,.2); border-radius: 50%; animation: signal 3s ease-out infinite; }
.signal-a { width: 65%; aspect-ratio: 1; left: 20%; top: 18%; }
.signal-b { width: 85%; aspect-ratio: 1; left: 10%; top: 7%; animation-delay: 1.5s; }
.hero-orbit { position: absolute; border: 1px solid rgba(30,97,255,.12); border-radius: 50%; pointer-events: none; }

@media (min-width: 961px) {
  .mascot-stage { isolation: isolate; }
  .mascot-stage .mascot-halo,
  .mascot-stage .signal { z-index: 0; }
  .mascot-stage > img { z-index: 2; }
  .mascot-stage .mascot-caption { z-index: 3; }
  .mascot-stage .speech { z-index: 4; }
}
.orbit-one { width: 55vw; height: 55vw; right: -13vw; top: -15vw; }
.orbit-two { width: 30vw; height: 30vw; right: 8vw; bottom: -17vw; }
.scroll-hint { position: absolute; z-index: 5; left: 5vw; bottom: 28px; display: flex; align-items: center; gap: 14px; font: 600 9px/1 var(--mono); letter-spacing: .1em; }
.scroll-hint i { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; }

.manifest, .features, .documents { padding: 130px 5vw; }
.section-label { display: flex; gap: 18px; color: #657087; }
.section-label span { color: var(--blue); }
.section-label.light { color: #aeb9cd; }
.section-label.light span { color: #82a9ff; }
.manifest { min-height: 100vh; background: white; }
.manifest-copy { display: grid; grid-template-columns: 22% 1fr; margin-top: 9vh; }
.side-note { color: var(--blue); }
.split-heading { margin: 0; font-size: clamp(58px, 8vw, 128px); line-height: .88; letter-spacing: -.075em; }
.split-heading span { display: block; }
.split-heading .blue { color: var(--blue); }
.manifest-bottom { width: 73%; margin: 100px 0 0 auto; padding-top: 28px; display: flex; justify-content: space-between; gap: 40px; border-top: 1px solid var(--line); }
.manifest-bottom > p { max-width: 600px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.mono-stat { display: flex; align-items: flex-start; gap: 12px; }
.mono-stat b { color: var(--blue); font-size: 52px; line-height: .8; letter-spacing: -.06em; }
.mono-stat span { font: 500 10px/1.4 var(--mono); }

.journey { position: relative; color: white; background: radial-gradient(circle at 78% 25%, #17284a 0, transparent 31%), var(--night); }
.journey-sticky { position: relative; min-height: 88vh; overflow: hidden; padding: 110px 5vw 130px; }
.journey-head { margin-top: 9vh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 390px); gap: 8vw; align-items: end; }
.journey-title p { margin: 0 0 14px; color: #7299ef; font: 600 10px/1 var(--mono); letter-spacing: .14em; }
.journey-title h2 { max-width: 850px; margin: 0; font-size: clamp(54px, 7vw, 112px); line-height: .86; letter-spacing: -.07em; }
.journey-intro { margin: 0 0 8px; color: #9ba9c1; font-size: 17px; line-height: 1.65; }
.journey-track { position: relative; margin-top: 105px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 5vw, 90px); }
.journey-progress { position: absolute; z-index: 0; left: 0; right: 0; top: 31px; height: 1px; overflow: hidden; background: rgba(255,255,255,.14); }
.journey-progress i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, #2a6dff, #70a0ff); box-shadow: 0 0 24px #2a6dff; transform: scaleX(0); transform-origin: left center; }
.journey-card { position: relative; z-index: 1; min-width: 0; min-height: 265px; display: flex; flex-direction: column; align-items: flex-start; background: transparent; }
.journey-node { width: 64px; height: 64px; margin-bottom: 42px; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: white; background: #0f1725; box-shadow: 0 0 0 10px #0c1320; transition: color .45s ease, background .45s ease, border-color .45s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.journey-node span { font: 600 9px/1 var(--mono); }
.journey-node b { font-size: 17px; font-weight: 400; }
.journey-card:hover .journey-node { border-color: #3979ff; background: var(--blue); transform: translateY(-5px) rotate(4deg); }
.journey-card h3 { margin: 0 0 12px; font-size: clamp(25px, 2.3vw, 38px); letter-spacing: -.045em; }
.journey-card p { max-width: 350px; margin: 0; color: #99a5b9; line-height: 1.65; }
.journey-card small { margin-top: auto; padding-top: 30px; color: #5f718e; font: 600 9px/1 var(--mono); letter-spacing: .14em; }

.features { background: #eef3ff; }
.features-title, .documents-head h2 { margin: 75px 0 85px 22%; font-size: clamp(58px, 8vw, 126px); line-height: .86; letter-spacing: -.075em; }
.features-title em, .documents-head em { color: var(--blue); font-style: normal; }
.feature-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.feature { min-height: 440px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.8); border-radius: 28px; background: rgba(255,255,255,.72); box-shadow: 0 24px 60px rgba(41,70,128,.08); }
.feature-main { grid-row: span 2; min-height: 898px; color: white; background: var(--blue); }
.feature-number { align-self: flex-start; padding: 7px 9px; border: 1px solid currentColor; border-radius: 8px; font: 500 9px/1 var(--mono); opacity: .55; }
.feature h3 { margin: 0 0 10px; font-size: clamp(25px, 2.2vw, 38px); letter-spacing: -.045em; }
.feature p { max-width: 480px; margin: 0; color: #667084; line-height: 1.6; }
.feature-main p { color: #c9d9ff; }
.shield-glyph { width: min(70%, 460px); aspect-ratio: 1; align-self: center; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.45); border-radius: 46% 46% 50% 50% / 30% 30% 70% 70%; box-shadow: 0 0 0 22px rgba(255,255,255,.05), 0 0 0 44px rgba(255,255,255,.035); font-size: clamp(62px, 8vw, 120px); font-weight: 800; letter-spacing: -.1em; }
.device-stack { position: relative; width: 210px; height: 170px; align-self: center; }
.device-stack i { position: absolute; inset: 0; border: 3px solid var(--blue); border-radius: 18px; background: var(--blue-pale); transform: rotate(-8deg); }
.device-stack i:nth-child(2) { transform: translate(25px,10px) rotate(2deg); background: white; }
.device-stack i:nth-child(3) { transform: translate(52px,22px) rotate(10deg); background: #9fc0ff; }
.regions { align-self: center; display: flex; }
.regions span { width: 100px; height: 100px; margin-left: -15px; display: grid; place-items: center; border: 1px solid rgba(30,97,255,.25); border-radius: 50%; color: var(--blue); background: rgba(220,231,255,.7); font: 700 16px/1 var(--mono); }

.price-section { position: relative; min-height: 100vh; overflow: hidden; padding: 105px 5vw; color: white; background: var(--blue); }
.price-backdrop { position: absolute; right: -4vw; bottom: -13vw; color: rgba(255,255,255,.06); font-size: 43vw; line-height: .75; font-weight: 800; letter-spacing: -.12em; }
.price-layout { position: relative; z-index: 2; margin-top: 8vh; display: grid; grid-template-columns: 1fr minmax(390px, 520px); gap: 9vw; align-items: end; }
.price-copy .kicker { color: #b7ccff; }
.price-copy h2 { margin: 20px 0 30px; font-size: clamp(72px, 9vw, 140px); line-height: .78; letter-spacing: -.08em; }
.price-copy > p:last-child { max-width: 490px; color: #cbd9ff; font-size: 17px; line-height: 1.65; }
.price-card { padding: 26px; color: var(--ink); border-radius: 30px; background: white; box-shadow: 0 36px 100px rgba(0,25,93,.3); }
.price-card-top { display: flex; justify-content: space-between; color: #677184; font: 500 9px/1 var(--mono); letter-spacing: .08em; }
.price-value { display: flex; align-items: flex-start; margin: 50px 0 36px; }
.price-value strong { font-size: 128px; line-height: .7; letter-spacing: -.1em; }
.price-value span { margin-left: 12px; color: var(--blue); font-size: 36px; font-weight: 800; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 25px; border-top: 1px solid var(--line); }
.price-card li { padding: 15px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 13px; }
.price-card li span { color: var(--muted); }
.price-card .primary-button { width: 100%; justify-content: space-between; }

.documents { background: white; }
.documents-head { display: flex; align-items: flex-end; gap: 60px; }
.documents-head h2 { flex: 1; margin-bottom: 75px; }
.documents-head > p { width: 260px; margin: 0 0 90px; color: var(--muted); line-height: 1.6; }
.document-list { border-top: 1px solid var(--line); }
.document-row { min-height: 118px; display: grid; grid-template-columns: 12% 1fr auto; align-items: center; border-bottom: 1px solid var(--line); transition: color .5s cubic-bezier(.2,.8,.2,1), background .5s ease; }
.document-row:hover { color: var(--blue); }
.document-index { font: 500 10px/1 var(--mono); color: #8891a2; }
.document-row strong { font-size: clamp(20px, 2.2vw, 34px); letter-spacing: -.04em; transition: transform .5s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.document-row:hover strong { transform: translate3d(10px,0,0); }
.document-row i { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; transition: transform .5s cubic-bezier(.2,.8,.2,1), background .5s ease, color .5s ease; }
.document-row:hover i { color: white; background: var(--blue); transform: rotate(45deg); }

.final-cta { position: relative; min-height: 95vh; overflow: hidden; display: grid; place-items: center; color: white; background: var(--night); text-align: center; }
.final-content { position: relative; z-index: 2; padding: 100px 24px; }
.final-content > p { color: #7ea4f9; font: 600 10px/1 var(--mono); letter-spacing: .15em; }
.final-content h2 { margin: 25px 0 45px; font-size: clamp(58px, 8vw, 128px); line-height: .86; letter-spacing: -.075em; }
.final-button { margin: auto; }
.final-content small { display: block; margin-top: 35px; color: #69758b; }
.final-marquee { position: absolute; display: flex; white-space: nowrap; color: rgba(255,255,255,.025); font-size: 26vw; font-weight: 800; letter-spacing: -.09em; animation: marquee 25s linear infinite; }

footer { padding: 55px 5vw 30px; background: #050811; color: white; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 40px; }
.footer-main > p { margin: 0; color: #717c91; font-size: 12px; line-height: 1.6; }
.footer-links { justify-self: end; display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.footer-meta { margin-top: 55px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: #596376; font: 500 9px/1 var(--mono); letter-spacing: .08em; }

.reveal { opacity: 0; transform: translateY(50px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

.cursor { display: none; }

@keyframes dots { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75%,100% { content: "..."; } }
@keyframes signal { 0% { transform: scale(.84); opacity: 0; } 35% { opacity: .7; } 100% { transform: scale(1.12); opacity: 0; } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (hover: hover) and (pointer: fine) {
  .cursor { position: fixed; z-index: 1500; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid var(--blue); border-radius: 50%; pointer-events: none; transform: translate3d(-50%,-50%,0); transition: width .25s, height .25s, background .25s; }
  .cursor span { opacity: 0; color: white; font: 600 8px/1 var(--mono); transition: opacity .2s; }
  .cursor.active { width: 58px; height: 58px; background: var(--blue); }
  .cursor.active span { opacity: 1; }
}

@media (max-width: 900px) {
  .header { top: 10px; left: 12px; right: 12px; height: 58px; }
  .header nav { display: none; }
  .brand-icon { width: 36px; height: 36px; }
  .nav-cta { min-height: 40px; }
  .hero { min-height: 900px; padding: 105px 22px 0; }
  .hero-topline { top: 88px; left: 22px; right: 22px; }
  .hero-topline > span:first-child { display: none; }
  .hero-topline { justify-content: flex-end; }
  .hero-copy { width: 100%; padding-top: 10vh; }
  .hero h1 { font-size: clamp(63px, 17vw, 110px); }
  .hero-lead { max-width: 440px; }
  .mascot-stage { width: min(86vw, 620px); height: 480px; right: -7vw; }
  .mascot-caption, .speech { display: none; }
  .scroll-hint { left: 22px; bottom: 22px; }
  .manifest, .features, .documents { padding: 90px 22px; }
  .manifest-copy { grid-template-columns: 1fr; gap: 35px; }
  .split-heading { font-size: clamp(53px, 13vw, 90px); }
  .manifest-bottom { width: 100%; margin-top: 70px; }
  .journey-sticky { position: relative; height: auto; padding: 90px 22px; }
  .journey-head { margin-top: 60px; grid-template-columns: 1fr; gap: 32px; }
  .journey-title h2 { font-size: clamp(52px, 13vw, 86px); }
  .journey-intro { max-width: 520px; }
  .journey-track { margin: 70px 0 0 5px; grid-template-columns: 1fr; gap: 0; transform: none !important; }
  .journey-progress { left: 31px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .journey-progress i { width: 100%; height: 100%; transform: scaleY(0); transform-origin: center top; }
  .journey-card { min-height: 0; padding: 0 0 58px 96px; }
  .journey-card:last-child { padding-bottom: 0; }
  .journey-node { position: absolute; left: 0; top: 0; margin: 0; }
  .journey-card h3 { padding-top: 8px; }
  .journey-card small { margin-top: 22px; padding-top: 0; }
  .features-title, .documents-head h2 { margin: 60px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-main { min-height: 680px; }
  .feature { min-height: 400px; }
  .price-section { padding: 90px 22px; }
  .price-layout { grid-template-columns: 1fr; }
  .price-card { max-width: 540px; }
  .documents-head { display: block; }
  .documents-head > p { width: auto; margin-bottom: 55px; }
}

@media (max-width: 560px) {
  .brand-name { display: none; }
  .nav-cta { padding: 0 13px; gap: 9px; }
  .hero { min-height: 820px; }
  .hero-copy { padding-top: 8vh; }
  .hero h1 { margin-top: 14px; }
  .hero-lead { font-size: 14px; line-height: 1.55; }
  .primary-button { min-height: 55px; }
  .mascot-stage { width: 105vw; height: 410px; right: -18vw; }
  .mascot-halo { width: 72%; left: 17%; }
  .manifest-bottom { flex-direction: column; }
  .features-title, .documents-head h2 { font-size: 14vw; }
  .feature-main { min-height: 570px; }
  .shield-glyph { width: 76%; }
  .price-copy h2 { font-size: 22vw; }
  .price-layout { grid-template-columns: minmax(0,1fr); }
  .price-card { padding: 20px; border-radius: 23px; }
  .price-value strong { font-size: 100px; }
  .document-row { min-height: 100px; grid-template-columns: 40px 1fr auto; gap: 10px; }
  .document-row strong { font-size: 17px; }
  .document-row i { width: 40px; height: 40px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .footer-meta { gap: 25px; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .signal, .final-marquee { animation: none !important; }
}

.legal-page { color: #10131a; background: #f5f7fc; }
.legal-header { position: static; margin: 0; border-radius: 0; background: #fff; }
.legal-main { max-width: 880px; margin: 0 auto; padding: 100px 24px 140px; }
.legal-main .back { display: inline-block; margin-bottom: 45px; color: var(--blue); font: 600 11px/1 var(--mono); }
.legal-main h1 { margin: 0 0 22px; font-size: clamp(42px, 7vw, 82px); line-height: .92; letter-spacing: -.06em; }
.legal-updated { margin-bottom: 60px; color: var(--muted); }
.legal-content { font-size: 15px; line-height: 1.8; }
.legal-content h2 { margin: 48px 0 16px; font-size: 25px; letter-spacing: -.03em; }
.legal-content p { margin: 0 0 16px; }
.legal-content li { margin: 8px 0; }
.legal-footer { background: var(--night); }
.legal-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #8490a7; font-size: 12px; }
.legal-footer > div { display: flex; gap: 22px; }
.brand-alias { margin: 0; }
.legal-alias { padding: 0 5vw 28px; color: #596376; background: var(--night); font-size: 10px; }

@media (max-width: 560px) {
  .legal-header .brand-name { display: inline; }
  .legal-header .header-action { padding: 0 12px; }
  .legal-main { padding: 80px 20px 110px; }
  .legal-main h1 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.02;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  .legal-content h2 {
    margin: 42px 0 14px;
    font-size: 23px;
    line-height: 1.16;
  }
  .legal-footer { align-items: flex-start; flex-direction: column; }
  .legal-footer > div { flex-direction: column; }
}
