/* Glide Remote website — shared styles */
:root {
  --bg: #f4f7fd;
  --bg-2: #e9effb;
  --surface: #ffffff;
  --surface-2: #f7f9fe;
  --ink: #111a33;
  --ink-2: #3f4b68;
  --muted: #69758f;
  --line: #dce4f4;
  --accent: #2158e0;
  --accent-2: #3d74ff;
  --accent-soft: #e2eaff;
  --accent-ink: #ffffff;
  --success: #1f8a55;
  --shadow: 0 1px 2px rgba(17, 26, 51, .05), 0 12px 32px -12px rgba(17, 26, 51, .18);
  --shadow-lg: 0 40px 80px -30px rgba(26, 50, 120, .35), 0 12px 24px -12px rgba(17, 26, 51, .2);
  --radius: 22px;
  --frame: #0f1424;
  --glow: rgba(61, 116, 255, .18);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0b0f19;
    --bg-2: #0f1522;
    --surface: #141b2a;
    --surface-2: #111827;
    --ink: #eef2fb;
    --ink-2: #b7c1d8;
    --muted: #8793ad;
    --line: #232d42;
    --accent: #5b8cff;
    --accent-2: #7aa2ff;
    --accent-soft: #18264a;
    --accent-ink: #0b0f19;
    --success: #46c285;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 32px -12px rgba(0, 0, 0, .6);
    --shadow-lg: 0 40px 80px -30px rgba(0, 0, 0, .8), 0 12px 24px -12px rgba(0, 0, 0, .6);
    --frame: #2a3246;
    --glow: rgba(91, 140, 255, .16);
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --bg: #0b0f19;
  --bg-2: #0f1522;
  --surface: #141b2a;
  --surface-2: #111827;
  --ink: #eef2fb;
  --ink-2: #b7c1d8;
  --muted: #8793ad;
  --line: #232d42;
  --accent: #5b8cff;
  --accent-2: #7aa2ff;
  --accent-soft: #18264a;
  --accent-ink: #0b0f19;
  --success: #46c285;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 32px -12px rgba(0, 0, 0, .6);
  --shadow-lg: 0 40px 80px -30px rgba(0, 0, 0, .8), 0 12px 24px -12px rgba(0, 0, 0, .6);
  --frame: #2a3246;
  --glow: rgba(91, 140, 255, .16);
  color-scheme: dark;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 3px; border-radius: 8px; }

h1, h2, h3 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--surface); padding: 8px 14px; border-radius: 10px; z-index: 100; }
.skip:focus { left: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 650; font-size: 17px; letter-spacing: -0.01em; }
.brand:hover { text-decoration: none; }
.brand img { width: 32px; height: 32px; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,.15); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; font-size: 15px; }
.nav-links a { color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: var(--accent-ink); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav-cta { font-size: 14px !important; padding: 9px 16px !important; }
@media (max-width: 760px) {
  .nav-links .hide-sm { display: none; }
  .nav-links { gap: 16px; }
}
@media (max-width: 420px) {
  .nav-links .hide-xs { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 600; font-size: 16px; line-height: 1.2;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 20px -8px var(--accent); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-store {
  background: #000; color: #fff; padding: 10px 22px 10px 18px; border-radius: 14px; gap: 12px;
  border: 1px solid rgba(255,255,255,.14);
}
:root[data-theme="dark"] .btn-store { border-color: #3a4459; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .btn-store { border-color: #3a4459; } }
.btn-store svg { width: 24px; height: 28px; flex: none; }
.btn-store span { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.btn-store small { font-size: 11px; font-weight: 500; opacity: .85; letter-spacing: .01em; }
.btn-store b { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 72px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: auto -20% -40% -20%; height: 90%;
  background: radial-gradient(60% 60% at 70% 40%, var(--glow), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 18%, transparent); }
.hero h1 { font-size: clamp(44px, 7.2vw, 84px); margin: 18px 0 20px; font-weight: 750; }
.hero h1 .soft { color: var(--accent); }
.lede { font-size: clamp(18px, 2vw, 21px); color: var(--ink-2); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; align-items: center; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 26px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.hero-notes li { display: inline-flex; align-items: center; gap: 7px; }
.hero-notes svg { width: 16px; height: 16px; color: var(--success); flex: none; }

.hero-visual { position: relative; height: 720px; }
.hero-visual .phone { position: absolute; width: 290px; }
.hero-visual .phone.front { right: 14%; top: 0; z-index: 2; }
.hero-visual .phone.back { right: 50%; top: 70px; transform: rotate(-7deg); opacity: .98; }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { height: 560px; max-width: 520px; width: 100%; margin: 0 auto; }
  .hero-visual .phone { width: 250px; }
  .hero-visual .phone.front { right: 8%; }
  .hero-visual .phone.back { right: auto; left: 6%; }
}
@media (max-width: 520px) {
  .hero { padding-top: 32px; }
  .hero-visual { height: 440px; }
  .hero-visual .phone { width: 196px; }
  .hero-visual .phone.front { right: 2%; }
  .hero-visual .phone.back { left: 2%; top: 50px; }
}

/* ---------- Phone frame ---------- */
.phone {
  position: relative; aspect-ratio: 1320 / 2868;
  border-radius: 15% / 7%;
  padding: 3.2%;
  background: linear-gradient(145deg, #3a4257, var(--frame) 30%, #05070d);
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255,255,255,.12);
}
.phone img, .phone video {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 12.4% / 5.8%;
  background: var(--bg-2);
}

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4.6vw, 52px); font-weight: 720; margin: 12px 0 16px; }
.section-head p { color: var(--ink-2); font-size: 19px; }
@media (max-width: 640px) { .section { padding: 68px 0; } .section-head { margin-bottom: 36px; } }

.band { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillar { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.pillar .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 16px; }
.pillar .ico svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 19px; margin-bottom: 6px; letter-spacing: -0.015em; }
.pillar p { color: var(--ink-2); font-size: 15.5px; }
@media (max-width: 960px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* Feature rows */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature + .feature { margin-top: 120px; }
.feature.flip .feature-media { order: -1; }
.feature-media { display: flex; justify-content: center; gap: 28px; align-items: center; }
.feature-media .phone { width: min(300px, 70vw); }
.feature-copy h3 { font-size: clamp(30px, 3.8vw, 44px); font-weight: 720; margin: 12px 0 16px; }
.feature-copy > p { color: var(--ink-2); font-size: 18px; }
.checks { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.checks li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; color: var(--ink-2); font-size: 16px; }
.checks li b { color: var(--ink); font-weight: 600; }
.checks svg { width: 22px; height: 22px; color: var(--accent); margin-top: 1px; }
.fineprint, .feature-copy > p.fineprint { margin-top: 18px; font-size: 13.5px; color: var(--muted); }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature.flip .feature-media { order: 0; }
  .feature + .feature { margin-top: 88px; }
}

/* Glide pad demo */
.pad-demo {
  width: min(300px, 80vw); flex: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: 28px;
  padding: 22px 20px 20px; box-shadow: var(--shadow); text-align: center;
}
.pad-demo .label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 650; }
.pad {
  position: relative; width: 100%; aspect-ratio: 1; margin: 14px 0 12px; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--accent-soft) 60%, var(--surface)), var(--accent-soft) 70%);
  box-shadow: inset 0 2px 10px rgba(20, 40, 100, .12), 0 0 0 6px var(--surface), 0 0 0 7px var(--line);
  touch-action: none; cursor: grab; user-select: none; -webkit-user-select: none;
}
.pad.dragging { cursor: grabbing; }
.pad .ball {
  position: absolute; left: 50%; top: 50%; width: 22%; aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 34% 28%, #b9d0ff 0%, #5b8cff 22%, #2158e0 55%, #0d2f99 100%);
  box-shadow: 0 10px 16px -6px rgba(13, 47, 153, .55), inset -3px -5px 10px rgba(0,0,0,.25);
  transition: transform .35s cubic-bezier(.2, .9, .3, 1.3), box-shadow .2s;
  pointer-events: none;
}
.pad.dragging .ball { transition: none; box-shadow: 0 18px 22px -8px rgba(13, 47, 153, .5), inset -3px -5px 10px rgba(0,0,0,.25); }
.pad-status { font-weight: 650; font-size: 16px; min-height: 1.5em; color: var(--ink); }
.pad-status.pulse { color: var(--accent); }
.pad-hint { font-size: 13px; color: var(--muted); margin-top: 2px; }
.pad-tv {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin: 14px auto 0; width: 80%;
  padding: 7px; border-radius: 9px; background: #0e1424; border: 3px solid #242c3f;
}
.pad-tv i { aspect-ratio: 16 / 10; border-radius: 3px; background: #243049; transition: background .15s, box-shadow .15s; }
.pad-tv i.on { background: #5b8cff; box-shadow: 0 0 0 2px #fff inset; }
.pad-tv i.hit { background: #fff; }

/* Grid of more features */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card .ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 16px; }
.card .ico svg { width: 21px; height: 21px; }
.card h3 { font-size: 18px; letter-spacing: -0.015em; margin-bottom: 6px; }
.card p { color: var(--ink-2); font-size: 15.5px; }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery {
  display: grid; grid-auto-flow: column; grid-auto-columns: 230px; gap: 26px;
  overflow-x: auto; scroll-snap-type: x mandatory; padding: 12px 20px 36px;
  padding-inline: max(20px, calc((100vw - 1100px) / 2));
  scroll-padding-inline: max(20px, calc((100vw - 1100px) / 2));
  scrollbar-width: thin;
}
.gallery figure { margin: 0; scroll-snap-align: start; }
.gallery .phone { width: 100%; box-shadow: var(--shadow); }
.gallery figcaption { margin-top: 16px; font-size: 14.5px; color: var(--ink-2); }
.gallery figcaption b { display: block; color: var(--ink); font-size: 16px; margin-bottom: 2px; }

/* Video */
.video-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.video-frame { justify-self: center; width: min(340px, 82vw); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #eef2fb; aspect-ratio: 720 / 1560; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.video-frame { position: relative; }
.video-toggle { position: absolute; right: 14px; top: 14px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(15, 20, 36, .72); color: #fff; display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.video-toggle svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .video-card { grid-template-columns: 1fr; gap: 36px; } }

/* Pricing */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: 26px; padding: 32px; display: flex; flex-direction: column; }
.plan.pro { border: 2px solid var(--accent); box-shadow: var(--shadow-lg); position: relative; }
.plan .tag { position: absolute; top: -13px; left: 28px; background: var(--accent); color: var(--accent-ink); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.plan h3 { font-size: 24px; }
.plan .price { font-size: 17px; color: var(--ink-2); margin: 8px 0 22px; }
.plan .price b { color: var(--ink); font-size: 30px; letter-spacing: -0.02em; margin-right: 6px; }
.plan .checks { margin-top: 0; }
.plan .fineprint { margin-top: auto; padding-top: 22px; }
@media (max-width: 760px) { .plans { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; counter-increment: step; }
.steps li::before {
  content: counter(step); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink); font-weight: 700; margin-bottom: 16px;
}
.steps h3 { font-size: 18px; margin-bottom: 6px; }
.steps p { color: var(--ink-2); font-size: 15.5px; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 0 22px; }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 32px 20px 0; font-weight: 620; font-size: 17px; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 10px; height: 10px; margin-top: -7px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: -2px; }
.faq details > div { padding: 0 0 22px; color: var(--ink-2); font-size: 16px; }
.faq details > div p + p { margin-top: 10px; }

/* CTA */
.cta {
  border-radius: 32px; padding: 64px 32px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #2158e0, #0e2f95);
  color: #fff;
}
.cta::after {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; right: -120px; top: -160px;
  background: radial-gradient(circle at 34% 28%, rgba(255,255,255,.35), rgba(255,255,255,0) 60%);
}
.cta img { width: 84px; height: 84px; border-radius: 20px; margin: 0 auto 22px; box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.cta h2 { font-size: clamp(32px, 4.6vw, 50px); font-weight: 740; }
.cta p { color: rgba(255,255,255,.85); font-size: 19px; margin: 14px auto 30px; max-width: 34em; }
.cta .btn-store { border-color: rgba(255,255,255,.3); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 44px 0 56px; margin-top: 96px; color: var(--muted); font-size: 14.5px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--ink-2); }
.site-footer .legal { margin-top: 26px; font-size: 13px; line-height: 1.6; max-width: 760px; }

/* ---------- Document pages (privacy / support) ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: 56px 20px 0; }
.doc-head h1 { font-size: clamp(38px, 6vw, 56px); font-weight: 740; margin: 14px 0 14px; }
.doc-head .meta { color: var(--muted); font-size: 15px; }
.doc .summary {
  margin: 36px 0 12px; padding: 24px 26px; border-radius: 20px;
  background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}
.doc .summary h2 { font-size: 19px; margin: 0 0 12px; letter-spacing: -0.01em; }
.doc .summary ul { margin: 0; padding-left: 20px; display: grid; gap: 6px; color: var(--ink-2); }
.doc h2 { font-size: 26px; margin: 48px 0 14px; font-weight: 700; }
.doc h3 { font-size: 19px; margin: 28px 0 8px; letter-spacing: -0.01em; }
.doc p, .doc li { color: var(--ink-2); }
.doc p + p { margin-top: 14px; }
.doc ul { padding-left: 22px; display: grid; gap: 8px; margin: 14px 0; }
.doc strong { color: var(--ink); font-weight: 620; }
.doc .toc { margin: 28px 0 0; padding: 20px 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.doc .toc b { display: block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.doc .toc ol { margin: 0; padding-left: 22px; columns: 2; column-gap: 32px; }
.doc .toc li { margin: 3px 0; break-inside: avoid; }
@media (max-width: 560px) { .doc .toc ol { columns: 1; } }
.table-wrap { overflow-x: auto; margin: 16px 0; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.doc table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 520px; }
.doc th, .doc td { text-align: left; vertical-align: top; padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.doc th { color: var(--ink); font-weight: 620; background: var(--surface-2); font-size: 14px; }
.doc tr:last-child td { border-bottom: 0; }

.contact-card {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  margin-top: 32px; padding: 26px 28px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.contact-card h2 { margin: 0 0 4px !important; font-size: 21px !important; }
.contact-card p { margin: 0; }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }
