:root {
  --ink: #07152f;
  --ink-soft: #263652;
  --paper: #f6f8fc;
  --white: #ffffff;
  --muted: #62708a;
  --line: #dce3ef;
  --blue: #1167f1;
  --blue-dark: #094cc0;
  --cyan: #18dfe2;
  --magenta: #f20ecb;
  --lavender: #eee7ff;
  --mint: #dbfff5;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(28, 52, 98, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px;
  border-radius: 8px; background: var(--ink); color: #fff; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(1280px, calc(100% - 64px));
  height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(141, 157, 188, .28);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.035em; }
.brand img { border-radius: 12px; box-shadow: 0 6px 18px rgba(10, 82, 166, .13); }
.brand span { font-size: 1.02rem; }
nav { display: flex; align-items: center; gap: 32px; color: #4f5d75; font-size: .87rem; font-weight: 650; }
nav a { transition: color .18s ease; }
nav a:hover { color: var(--blue); }
.site-header > .button { justify-self: end; }

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 17px; border-color: #cbd5e7; background: rgba(255,255,255,.7); }
.button-small:hover { background: #fff; box-shadow: 0 8px 24px rgba(30, 55, 102, .1); }
.button-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(17, 103, 241, .25); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 13px 28px rgba(17, 103, 241, .31); }
.button-secondary { border-color: #ccd5e5; background: rgba(255,255,255,.72); color: var(--ink); }

.hero {
  position: relative;
  width: min(1280px, calc(100% - 64px));
  min-height: 690px;
  margin: 0 auto;
  padding: 78px 0 90px;
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  gap: 70px;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute; z-index: -1; inset: 0 -20vw auto 42%; height: 560px;
  background: radial-gradient(circle at 50% 40%, rgba(170, 231, 255, .7), transparent 58%), radial-gradient(circle at 78% 50%, rgba(234, 186, 255, .45), transparent 45%);
  filter: blur(15px);
}
.eyebrow, .kicker {
  margin: 0 0 19px;
  color: #355173;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.eyebrow span { display: inline-block; width: 8px; height: 8px; margin-right: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(24, 223, 226, .14); }
h1, h2, h3, p { text-wrap: pretty; }
h1 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(3.55rem, 5.2vw, 5.05rem);
  line-height: .98;
  letter-spacing: -.07em;
}
h1 em { color: var(--blue); font-style: normal; }
.hero-lede { max-width: 585px; margin: 28px 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { margin-top: 33px; display: flex; gap: 12px; flex-wrap: wrap; }
.trust-list { margin: 34px 0 0; padding: 0; display: flex; gap: 25px; list-style: none; color: #4f5f79; font-size: .77rem; font-weight: 720; }
.trust-list span { margin-right: 6px; color: var(--blue); }

.hero-stage { position: relative; min-width: 0; padding: 32px 0 44px; }
.editor-window {
  position: relative; z-index: 3; margin: 0;
  overflow: hidden;
  border: 1px solid rgba(75, 101, 146, .34);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 38px 90px rgba(28, 57, 111, .23), 0 8px 24px rgba(21, 70, 162, .1);
  transform: perspective(1400px) rotateY(-2.5deg) rotateX(1deg);
}
.window-bar { height: 39px; padding: 0 14px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid #d8e0ed; background: #f5f7fb; }
.window-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #b4bfd2; }
.window-bar > span:first-child { background: #ff8198; }
.window-bar > span:nth-child(2) { background: #ffd569; }
.window-bar > span:nth-child(3) { background: #42d8b2; }
.window-bar small { margin: 0 auto; color: #66758d; font-size: .66rem; font-weight: 650; }
.window-bar i { padding: 4px 8px; border-radius: 99px; background: #ddfbf3; color: #0b775d; font-size: .57rem; font-style: normal; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.editor-window > img { width: 100%; height: auto; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 140px; height: 140px; top: -12px; right: -50px; background: linear-gradient(145deg, var(--magenta), #895cff); opacity: .72; }
.orb-two { width: 110px; height: 110px; bottom: 18px; left: -45px; background: linear-gradient(145deg, var(--cyan), #42a5ff); opacity: .8; }
.floating-note {
  position: absolute; z-index: 5;
  min-width: 212px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(118, 139, 176, .3);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 40px rgba(23, 49, 96, .18);
  backdrop-filter: blur(12px);
}
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-size: .76rem; line-height: 1.25; }
.floating-note small { margin-top: 2px; color: var(--muted); font-size: .62rem; }
.note-private { left: -35px; bottom: 7px; }
.note-ready { right: -24px; top: 4px; }
.note-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: var(--mint); color: #087861; font-weight: 900; }
.status-dot { width: 11px; height: 11px; margin: 0 10px; border-radius: 50%; background: #15c78e; box-shadow: 0 0 0 7px rgba(21, 199, 142, .13); }

.promise-bar {
  min-height: 72px;
  padding: 18px max(32px, calc((100% - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  background: var(--ink);
  color: #d9e4f7;
  font-size: .86rem;
}
.promise-bar p { margin: 0; }
.promise-bar strong { color: #fff; }
.promise-bar > span { color: var(--cyan); }
.promise-bar p:last-child { flex: 0 0 auto; color: #8feef0; font: 800 .69rem/1.3 ui-monospace, monospace; letter-spacing: .08em; text-transform: uppercase; }

.section { width: min(1280px, calc(100% - 64px)); margin: 0 auto; padding: 118px 0; }
.section-heading { margin-bottom: 54px; display: grid; grid-template-columns: 1.18fr .82fr; gap: 100px; align-items: end; }
.section h2, .privacy h2 {
  margin: 0;
  font-size: clamp(2.55rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.06em;
}
.section-heading > p { max-width: 510px; margin: 0 0 5px; color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.feature-card {
  min-height: 325px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.signature-card { grid-column: span 7; background: linear-gradient(145deg, #fff, #eef7ff); }
.text-card { grid-column: span 5; }
.ink-card { grid-column: span 4; }
.pages-card { grid-column: span 4; background: linear-gradient(145deg, #fff, #f8f2ff); }
.download-card { grid-column: span 4; padding: 0; background: var(--ink); color: #fff; }
.feature-number { align-self: flex-end; color: #8290a8; font: 800 .65rem/1 ui-monospace, monospace; }
.feature-card h3 { margin: auto 0 8px; font-size: 1.32rem; line-height: 1.22; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.signature-demo { position: relative; width: min(370px, 75%); margin: 32px 0 25px; }
.signature-demo svg { width: 100%; overflow: visible; }
.signature-demo path { fill: none; stroke: var(--blue); stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; }
.signature-demo span { position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: #9eabc0; }
.text-demo { margin: 33px 0 24px; padding: 18px; display: grid; grid-template-columns: auto 1fr; gap: 8px 17px; border: 1px solid #d8e0ec; border-radius: 14px; background: #f8faff; }
.text-demo span { color: #8a96aa; font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; }
.text-demo strong { font-size: .76rem; }
.text-demo i { grid-column: 1 / -1; height: 1px; background: #d8e0ec; }
.ink-demo { margin: 45px 0 38px; display: flex; align-items: center; gap: 12px; }
.swatch { width: 30px; height: 30px; border: 5px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px #cfd8e6; }
.swatch.blue { background: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.swatch.black { background: #171b24; }
.swatch.magenta { background: var(--magenta); }
.ink-demo i { position: relative; flex: 1; height: 7px; border-radius: 99px; background: #e1e6ef; }
.ink-demo i::after { content: ""; position: absolute; left: 40%; top: 50%; width: 17px; height: 17px; border: 3px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 1px 5px rgba(0,0,0,.25); transform: translate(-50%,-50%); }
.ink-demo strong { font-size: .76rem; }
.pages-demo { height: 105px; margin: 27px 0 21px; display: flex; align-items: center; justify-content: center; }
.pages-demo i { width: 68px; height: 90px; margin-left: -38px; border: 1px solid #cdd7e8; border-radius: 5px; background: #fff; box-shadow: 0 8px 18px rgba(54, 72, 110, .1); transform: rotate(-5deg); }
.pages-demo i:first-child { margin-left: 0; transform: rotate(-11deg); }
.pages-demo i:last-of-type { transform: rotate(3deg); border-color: #74a9ff; }
.pages-demo span { margin-left: 18px; padding: 7px 10px; border-radius: 8px; background: #e8f1ff; color: var(--blue); font: 800 .68rem/1 ui-monospace, monospace; }
.download-visual { min-height: 170px; padding: 25px; display: grid; place-content: center; text-align: center; background: radial-gradient(circle at 50% 10%, #1f7cff, transparent 58%), linear-gradient(145deg, #142d5c, #08142b); }
.download-visual > span { width: 54px; height: 54px; margin: 0 auto 13px; display: grid; place-items: center; border-radius: 16px; background: var(--blue); font-size: 1.7rem; font-weight: 900; }
.download-visual p { color: #fff; font-weight: 800; }
.download-visual small { margin-top: 3px; color: #aab9d2; font-size: .65rem; }
.download-card > div:last-child { min-height: 155px; padding: 24px; display: flex; flex-direction: column; }
.download-card .feature-number { margin-left: auto; }
.download-card h3 { color: #fff; }
.download-card p { color: #afbdd3; }

.how { display: grid; grid-template-columns: .76fr 1.24fr; gap: 110px; border-top: 1px solid var(--line); }
.how-intro { align-self: start; position: sticky; top: 42px; }
.how-intro > p:last-child { max-width: 430px; margin: 25px 0 0; color: var(--muted); }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid #cfd8e7; }
.steps li { padding: 30px 0; display: grid; grid-template-columns: 72px 1fr; gap: 26px; border-bottom: 1px solid #cfd8e7; }
.steps li > span { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid #bfcbe0; border-radius: 50%; color: var(--blue); font: 800 .67rem/1 ui-monospace, monospace; }
.steps h3 { margin: 0 0 8px; font-size: 1.3rem; letter-spacing: -.035em; }
.steps p { max-width: 650px; margin: 0; color: var(--muted); }

.privacy { width: 100%; overflow: hidden; background: var(--ink); color: #fff; }
.privacy-inner { width: min(1280px, calc(100% - 64px)); min-height: 700px; margin: 0 auto; padding: 112px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 105px; align-items: center; }
.privacy .kicker { color: #70e9e7; }
.privacy-copy > p:not(.kicker) { max-width: 590px; margin: 26px 0 35px; color: #adbad0; }
.privacy-copy ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid #2d3e5b; }
.privacy-copy li { padding: 17px 0; display: grid; grid-template-columns: 45px 1fr; border-bottom: 1px solid #2d3e5b; }
.privacy-copy li > span { grid-row: span 2; color: #55e8e8; font: 800 .65rem/1.6 ui-monospace, monospace; }
.privacy-copy li strong { font-size: .94rem; }
.privacy-copy li small { margin-top: 3px; color: #8d9ab1; font-size: .76rem; }
.privacy-visual { position: relative; min-height: 455px; display: grid; place-items: center; }
.shield-ring { position: absolute; border: 1px solid rgba(87, 225, 230, .18); border-radius: 50%; }
.ring-one { width: 340px; height: 340px; }
.ring-two { width: 490px; height: 490px; }
.shield { position: relative; z-index: 2; width: 190px; height: 190px; display: grid; place-items: center; border: 1px solid rgba(85, 232, 232, .45); border-radius: 48px; background: linear-gradient(145deg, rgba(22, 128, 220, .38), rgba(9, 33, 69, .8)); box-shadow: 0 0 80px rgba(49, 218, 228, .18); transform: rotate(3deg); }
.shield svg { width: 80px; fill: none; stroke: #55e8e8; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.device-card, .no-cloud { position: absolute; z-index: 3; border: 1px solid #30476d; border-radius: 15px; background: rgba(11, 30, 61, .88); box-shadow: 0 18px 40px rgba(0,0,0,.28); backdrop-filter: blur(12px); }
.device-card { left: 0; bottom: 50px; min-width: 205px; padding: 15px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 2px 11px; }
.device-card > span { grid-row: span 2; width: 32px; height: 32px; border: 1px solid #4a668f; border-radius: 8px; background: linear-gradient(#173c72 70%, #55e8e8 70% 76%, #173c72 76%); }
.device-card strong { font: 800 .64rem/1.3 ui-monospace, monospace; letter-spacing: .06em; }
.device-card small { color: #889bb9; font-size: .65rem; }
.device-card i { grid-column: 3; grid-row: 1 / span 2; color: #55e8e8; font-size: .6rem; font-style: normal; }
.no-cloud { right: -6px; top: 62px; padding: 12px 15px; color: #8fa0bb; font-size: .65rem; }
.no-cloud strong { display: block; color: #fff; font-size: .77rem; }

.use-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 70px 100px; align-items: center; }
.case-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; }
.case-cloud span { padding: 12px 18px; border: 1px solid #cdd7e7; border-radius: 99px; background: #fff; color: #40506b; font-size: .82rem; font-weight: 720; }
.case-cloud span:nth-child(2n) { background: #ebf5ff; border-color: #bed8ff; color: #1458b8; }
.case-cloud span:nth-child(3n) { background: #fff0fc; border-color: #f1bde6; color: #9f297e; }
.definition-note { grid-column: 1 / -1; padding: 23px 27px; display: flex; gap: 17px; align-items: flex-start; border: 1px solid #cfd9e8; border-radius: 17px; background: rgba(255,255,255,.63); }
.definition-note > span { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-family: Georgia, serif; font-weight: 700; }
.definition-note p { margin: 0; color: var(--muted); font-size: .88rem; }
.definition-note strong { color: var(--ink); }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; border-top: 1px solid var(--line); }
.faq-heading { align-self: start; position: sticky; top: 42px; }
.faq-list { border-top: 1px solid #ccd6e6; }
details { border-bottom: 1px solid #ccd6e6; }
summary { position: relative; padding: 25px 45px 25px 0; list-style: none; cursor: pointer; font-weight: 790; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 2px; top: 20px; color: var(--blue); font-size: 1.35rem; font-weight: 500; }
details[open] summary::after { content: "−"; }
details p { max-width: 650px; margin: -6px 0 24px; color: var(--muted); font-size: .92rem; }

.final-cta {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  padding: 92px 30px;
  border: 1px solid #b9d8ee;
  border-radius: 34px;
  background: radial-gradient(circle at 12% 0%, rgba(26, 226, 224, .45), transparent 28%), radial-gradient(circle at 88% 100%, rgba(241, 14, 203, .25), transparent 30%), linear-gradient(145deg, #e8fbff, #f2ebff);
  text-align: center;
}
.final-cta::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(12, 77, 160, .22) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 77, 160, .22) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(black, transparent 75%); }
.final-cta > * { position: relative; }
.final-cta > img { margin: 0 auto 24px; border-radius: 17px; box-shadow: 0 13px 28px rgba(23, 82, 160, .18); }
.final-cta .kicker { margin-bottom: 15px; }
.button-large { min-height: 58px; margin-top: 32px; padding: 0 28px; }
.cta-note { margin: 22px 0 0; color: #53627b; font: 700 .69rem/1.5 ui-monospace, monospace; text-transform: uppercase; letter-spacing: .045em; }

.site-footer { width: min(1280px, calc(100% - 64px)); min-height: 122px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; align-items: center; border-top: 1px solid var(--line); }
.site-footer > p { margin: 0; color: var(--muted); font-size: .82rem; text-align: center; }
.site-footer > div { display: flex; justify-content: flex-end; gap: 24px; color: #43516a; font-size: .8rem; font-weight: 700; }
.site-footer a:hover { color: var(--blue); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { max-width: 750px; }
  .hero-stage { width: min(860px, 100%); justify-self: center; }
  .privacy-inner { gap: 55px; }
  .signature-card { grid-column: span 12; }
  .text-card { grid-column: span 6; }
  .ink-card, .pages-card, .download-card { grid-column: span 6; }
  .download-card { grid-column: span 12; display: grid; grid-template-columns: 1fr 1fr; }
  .how, .faq { grid-template-columns: .85fr 1.15fr; gap: 65px; }
}

@media (max-width: 780px) {
  .site-header, .hero, .section, .privacy-inner, .site-footer { width: min(100% - 36px, 680px); }
  .site-header { height: 72px; }
  .brand img { width: 38px; height: 38px; }
  .button-small { padding: 0 13px; font-size: .76rem; }
  .hero { min-height: 0; padding: 58px 0 72px; }
  h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero-lede { font-size: 1rem; }
  .hero-stage { padding: 22px 0 55px; }
  .orb-one { right: 0; }
  .orb-two { left: 0; }
  .editor-window { transform: none; border-radius: 16px; }
  .window-bar { display: none; }
  .note-ready { right: -5px; top: 0; }
  .note-private { left: -4px; bottom: 5px; }
  .floating-note { min-width: 185px; }
  .promise-bar { padding: 22px 18px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .promise-bar > span { display: none; }
  .section { padding: 84px 0; }
  .section-heading, .how, .faq, .use-cases, .privacy-inner { grid-template-columns: 1fr; gap: 44px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .signature-card, .text-card, .ink-card, .pages-card, .download-card { grid-column: auto; }
  .signature-card, .download-card { grid-column: 1 / -1; }
  .download-card { display: grid; grid-template-columns: 1fr 1fr; }
  .how-intro, .faq-heading { position: static; }
  .privacy-inner { min-height: 0; padding: 88px 0; }
  .privacy-visual { min-height: 390px; order: -1; }
  .ring-two { width: 390px; height: 390px; }
  .definition-note { grid-column: auto; }
  .site-footer { padding: 34px 0; grid-template-columns: 1fr; text-align: center; }
  .site-footer .brand, .site-footer > div { justify-content: center; }
}

@media (max-width: 540px) {
  .site-header .brand span { display: none; }
  .button-small span { display: none; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .trust-list { gap: 11px; justify-content: space-between; font-size: .66rem; }
  .hero-stage { padding-bottom: 73px; }
  .floating-note { min-width: 172px; padding: 10px; }
  .note-ready { display: none; }
  .note-private { left: 50%; transform: translateX(-50%); }
  .feature-grid { grid-template-columns: 1fr; }
  .signature-card, .text-card, .ink-card, .pages-card, .download-card { grid-column: auto; }
  .feature-card { min-height: 290px; }
  .download-card { display: block; }
  .steps li { grid-template-columns: 48px 1fr; gap: 14px; }
  .privacy-visual { min-height: 335px; transform: scale(.86); margin: -25px; }
  .device-card { left: -10px; }
  .no-cloud { right: -12px; }
  .case-cloud { gap: 9px; }
  .case-cloud span { padding: 10px 14px; }
  .final-cta { width: calc(100% - 36px); padding: 68px 20px; }
  .site-footer > div { flex-wrap: wrap; gap: 12px 20px; }
}

@media (prefers-reduced-motion: no-preference) {
  .editor-window { animation: settle .7s cubic-bezier(.2,.7,.2,1) both; }
  .floating-note { animation: rise .65s .25s cubic-bezier(.2,.7,.2,1) both; }
  @keyframes settle { from { opacity: 0; transform: perspective(1400px) rotateY(-2.5deg) rotateX(1deg) translateY(18px); } to { opacity: 1; transform: perspective(1400px) rotateY(-2.5deg) rotateX(1deg) translateY(0); } }
  @keyframes rise { from { opacity: 0; margin-top: 12px; } to { opacity: 1; margin-top: 0; } }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
