/* ==========================================================================
   Pulsar site — palette taken from the Pulsar app (warm off-white, near-black
   controls, blue brand) and motion language from the Finaya site
   (content-rise scroll reveals, icon-spring, ken-burns hero).
   ========================================================================== */

:root {
  --bg: #f8f6f1;
  --bg-2: #f1eee7;
  --surface: #ffffff;
  --ink: #111111;
  --ink-2: #1a2433;
  --muted: #66758a;
  --muted-2: #8a9ab0;
  --line: #e7e3d9;
  --brand: #2563eb;
  --accent: var(--brand);
  --gold: #c8902e;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;

  --r: 16px;
  --r-sm: 10px;
  --shadow-1: 0 1px 2px rgba(17, 17, 17, 0.04), 0 8px 28px rgba(17, 17, 17, 0.06);
  --shadow-2: 0 2px 4px rgba(17, 17, 17, 0.04), 0 22px 60px rgba(17, 17, 17, 0.13);
  --ease: cubic-bezier(0, 0, 0.2, 1);
  --ease-io: cubic-bezier(0.4, 0, 0.2, 1);
  --h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1rem/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  animation: page-in 0.55s var(--ease) both;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; letter-spacing: -0.03em; line-height: 1.08; color: var(--ink); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
[id] { scroll-margin-top: calc(var(--h) + 56px); }
::selection { background: color-mix(in srgb, var(--brand) 22%, white); }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 3rem); }
.ic { width: 20px; height: 20px; flex: none; }
.ic--sm { width: 14px; height: 14px; }

/* ---------- motion primitives ---------- */
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes content-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes rise-side { from { opacity: 0; transform: translateX(34px) scale(0.975); } to { opacity: 1; transform: none; } }
@keyframes icon-spring { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }
@keyframes ken-burns { from { transform: scale(1.09); } to { transform: scale(1); } }
@keyframes word-up { to { transform: none; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes drift { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(3%, -4%) scale(1.06); } }
@keyframes pulse-ring { 0% { transform: scale(0.35); opacity: 0.55; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes grow-y { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes cue { 0% { transform: translateY(-6px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

.js .reveal { opacity: 0; }
.js .reveal.is-in { animation: content-rise 700ms var(--ease) both; animation-delay: var(--d, 0ms); }
.js .reveal--side.is-in { animation-name: rise-side; animation-duration: 850ms; }
.js .reveal-icon { opacity: 0; }
.js .is-in .reveal-icon, .js .reveal-icon.is-in { animation: icon-spring 550ms var(--ease) both; animation-delay: calc(var(--d, 0ms) + 120ms); }
/* once a reveal has played, hand transforms back to hover states */
.js .reveal.is-done, .js .is-in .reveal-icon.is-done { animation: none; opacity: 1; transform: none; }

/* page transitions (cross-document view transitions where supported, JS fade otherwise) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: 180ms ease-out both fade-out; }
::view-transition-new(root) { animation: 320ms var(--ease) both content-rise; }
@keyframes fade-out { to { opacity: 0; } }
body.is-leaving { opacity: 0; transition: opacity 0.2s ease-in; }

.progress { position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 100; pointer-events: none; }
.progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--gold)); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); }

/* ---------- buttons, chips, tags ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.85rem 1.35rem; border-radius: 999px; border: 1px solid transparent;
  font: 600 0.95rem/1 var(--font); cursor: pointer; white-space: nowrap;
  transition: transform 0.25s var(--ease-io), background 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.btn .ic { width: 18px; height: 18px; transition: transform 0.25s var(--ease-io); }
.btn:hover .ic { transform: translateX(3px); }
.btn:hover { transform: translateY(-1px); }
.btn--dark { background: var(--ink); color: #fff; box-shadow: 0 6px 18px rgba(17, 17, 17, 0.18); }
.btn--dark:hover { background: #2a2a2a; box-shadow: 0 10px 26px rgba(17, 17, 17, 0.24); }
.btn--ghost { border-color: #d6d1c4; background: rgba(255, 255, 255, 0.5); color: var(--ink); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; border-color: #bdb7a7; }
.btn--light { background: var(--bg); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--sm { padding: 0.6rem 1rem; font-size: 0.88rem; }

.eyebrow { display: inline-flex; align-items: center; gap: 0.55rem; margin: 0 0 1rem; font: 600 0.74rem/1 var(--font); letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 50%, transparent); animation: pulse-dot 2.2s infinite; }
@keyframes pulse-dot { 70% { box-shadow: 0 0 0 9px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips li { padding: 0.4rem 0.85rem; border: 1px solid #d9d5c9; border-radius: 999px; font-size: 0.82rem; font-weight: 500; color: var(--ink-2); background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px); }
.link { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid transparent; }
.link .ic { width: 17px; height: 17px; transition: transform 0.25s var(--ease-io); }
.link:hover .ic { transform: translateX(4px); }
.link:hover { color: var(--accent); }

.mono { --c: var(--accent); display: inline-grid; place-items: center; min-width: 34px; height: 34px; padding: 0 8px; border-radius: 9px; background: var(--ink); color: #fff; font: 700 0.72rem/1 var(--font-head); letter-spacing: 0.03em; box-shadow: inset 0 -3px 0 var(--c); flex: none; }
.mono--lg { min-width: 44px; height: 44px; border-radius: 12px; font-size: 0.9rem; }

.pill { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.3rem 0.7rem; border-radius: 999px; font: 600 0.72rem/1 var(--font); letter-spacing: 0.04em; }
.pill--soon { background: #fff7e6; color: #8a5a06; border: 1px solid #f0d9a5; }
.pill--soon i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: blink 1.6s infinite; }

/* ---------- header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--h); transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s; }
.site-header.is-scrolled { background: rgba(248, 246, 241, 0.97); backdrop-filter: saturate(1.4) blur(14px); box-shadow: 0 1px 0 var(--line); }
.site-header__in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand img { height: 26px; width: auto; }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav > a, .nav__dd-t { padding: 0.5rem 0.85rem; border-radius: 999px; font-size: 0.92rem; font-weight: 500; color: #33475b; transition: background 0.2s, color 0.2s; display: inline-flex; align-items: center; gap: 0.3rem; }
.nav > a:hover, .nav__dd-t:hover { color: var(--ink); background: rgba(17, 17, 17, 0.05); }
.nav > a.is-active, .nav__dd-t.is-active { color: var(--ink); background: rgba(17, 17, 17, 0.07); }
.nav__cta { margin-left: 0.5rem; }
.nav .nav__cta { color: #fff; }
.nav .nav__cta:hover { background: #2a2a2a; color: #fff; }
.nav__dd { position: relative; }
.dd { position: absolute; top: calc(100% + 6px); left: 50%; width: 320px; padding: 0.5rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-2); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity 0.2s, transform 0.25s var(--ease), visibility 0.2s; }
.nav__dd:hover .dd, .nav__dd:focus-within .dd { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dd a { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0.7rem; border-radius: 10px; transition: background 0.15s; }
.dd a:hover { background: var(--bg); }
.dd b { display: block; font-size: 0.92rem; font-weight: 600; line-height: 1.2; }
.dd small { display: block; color: var(--muted); font-size: 0.78rem; }
.burger { display: none; width: 42px; height: 42px; border: 0; background: transparent; border-radius: 12px; cursor: pointer; color: var(--ink); }
.burger .ic:last-child, .burger[aria-expanded="true"] .ic:first-child { display: none; }
.burger[aria-expanded="true"] .ic:last-child { display: block; }
.burger .ic { margin: auto; }

/* ---------- home hero ---------- */
.hero { position: relative; min-height: max(100svh, 660px); display: flex; align-items: center; padding: calc(var(--h) + 2rem) 0 5rem; overflow: hidden; background: #fcf9f2; }
.hero__bg { position: absolute; inset: -3%; background: #fcf9f2 url("img/hero-bg.jpg") 72% 40% / cover no-repeat; animation: ken-burns 20s var(--ease) infinite alternate; will-change: transform; transition: translate 0.4s ease-out; }
.hero__fade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(252, 249, 242, 0.96) 0%, rgba(252, 249, 242, 0.82) 30%, rgba(252, 249, 242, 0) 60%), linear-gradient(0deg, var(--bg) 0%, rgba(248, 246, 241, 0) 14%); }
.hero__in { position: relative; }
.hero__eyebrow { color: var(--ink-2); animation: content-rise 0.7s var(--ease) 0.05s both; }
.hero__title { max-width: 11.5em; font-size: clamp(2.7rem, 6.6vw, 5.4rem); font-weight: 700; line-height: 1.01; letter-spacing: -0.045em; }
.w { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 0.04em 0.12em; margin: 0 -0.04em -0.12em; }
.w > span { display: inline-block; transform: translateY(108%); animation: word-up 0.85s var(--ease) forwards; animation-delay: calc(0.15s + var(--i) * 0.075s); }
.w.em > span { color: #b7791f; }
.hero__lead { max-width: 33rem; margin: 1.6rem 0 2rem; font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.55; color: #33475b; animation: content-rise 0.8s var(--ease) 0.7s both; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; animation: content-rise 0.8s var(--ease) 0.85s both; }
.hero__chips { margin-top: 2.2rem; animation: content-rise 0.8s var(--ease) 1s both; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; width: 24px; height: 38px; margin-left: -12px; border: 1.5px solid #b9b3a4; border-radius: 14px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: #8a8474; animation: cue 1.9s infinite; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: #fff; padding: 1.05rem 0; }
.marquee__t { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__t { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; white-space: nowrap; padding-inline: 1.6rem; font: 600 0.82rem/1 var(--font); letter-spacing: 0.1em; text-transform: uppercase; color: #5b6b80; }
.marquee span::after { content: ""; width: 5px; height: 5px; margin-left: 3.2rem; border-radius: 50%; background: var(--gold); }

/* ---------- sections ---------- */
.section { position: relative; padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem) clamp(3.5rem, 7vw, 6rem); }
.section--tint { background: var(--bg-2); }
.section--dark { background: #111; color: #e9e6df; overflow: hidden; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .eyebrow { color: #93b4ff; }
.dark-grid { position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(-30deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px), radial-gradient(60% 50% at 50% 0%, color-mix(in srgb, var(--accent) 38%, transparent), transparent 70%);
  background-size: 52px 52px, 52px 52px, 100% 100%; animation: ken-burns 22s var(--ease) infinite alternate; mask-image: linear-gradient(#000 60%, transparent); }
.section--dark .wrap { position: relative; }

h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); font-weight: 700; letter-spacing: -0.04em; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.6; color: #33475b; }
.section--dark .lead { color: #b9c2d0; }
.sec-head { max-width: 46rem; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.sec-head .lead { margin-top: 1.2rem; margin-bottom: 0; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--row { max-width: none; margin-top: 3.5rem; margin-bottom: 1.6rem; }

.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split p { color: var(--muted); font-size: 1.05rem; }
.split .lead { color: #33475b; margin-top: 1.4rem; }
.statpanel { display: grid; gap: 0; background: var(--ink); color: #fff; border-radius: 22px; padding: 0.6rem 2rem; box-shadow: var(--shadow-2); position: relative; overflow: hidden; }
.statpanel::before { content: ""; position: absolute; width: 360px; height: 360px; right: -140px; top: -160px; border-radius: 50%; background: radial-gradient(closest-side, rgba(37, 99, 235, 0.55), transparent); }
.statpanel__i { position: relative; display: flex; align-items: baseline; gap: 1.2rem; padding: 1.5rem 0; }
.statpanel__i + .statpanel__i { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.statpanel .stat__n { font-size: clamp(2.6rem, 5vw, 3.8rem); min-width: 1.6ch; color: #fff; }
.statpanel .stat__l { color: #b9c2d0; font-size: 1rem; line-height: 1.35; }
.stat__n { font: 700 clamp(2.4rem, 5vw, 3.5rem)/1 var(--font-head); letter-spacing: -0.045em; color: var(--accent); font-variant-numeric: tabular-nums; }
.stat__n--text { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }

/* capability cards */
.caps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.caps--3 { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
.caps--4 { grid-template-columns: repeat(4, 1fr); margin-top: 0; }
.cap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; box-shadow: var(--shadow-1); transition: transform 0.3s var(--ease-io), box-shadow 0.3s; }
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.cap__ic { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 1rem; border-radius: 50%; background: var(--ink); color: #fff; }
.cap h3 { font-size: 1.08rem; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.cap p { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.55; }
.cap--sm { padding: 1.25rem; }
.cap--sm .cap__ic { width: 38px; height: 38px; }
.cap--sm .ic { width: 18px; height: 18px; }
.cap--link { background: transparent; border-style: dashed; box-shadow: none; display: flex; flex-direction: column; justify-content: center; gap: 0.6rem; }
.cap--link p { margin-bottom: 0.4rem; }
.inds { margin-top: clamp(3rem, 6vw, 5rem); }
.inds__t { font: 600 0.74rem/1 var(--font); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.inds__g { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.ind { padding: 1.4rem 1.4rem 0.2rem 0; display: flex; flex-direction: column; gap: 0.35rem; }
.ind + .ind { padding-left: 1.4rem; border-left: 1px solid var(--line); }
.ind b { font: 600 1.05rem var(--font-head); letter-spacing: -0.02em; }
.ind span { color: var(--muted); font-size: 0.9rem; }

/* home: core stack (dark) */
.stack { max-width: 1000px; margin: 0 auto; }
.stack__top { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
.stack__p { display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem; padding: 1rem; border-radius: 14px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); transition: background 0.25s, transform 0.25s var(--ease-io), border-color 0.25s; }
.stack__p:hover { background: rgba(255, 255, 255, 0.11); transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 70%, white); }
.stack__p b { font: 600 0.92rem var(--font-head); color: #fff; letter-spacing: -0.01em; }
.stack__p .mono { background: #fff; color: #111; }
.stack__p.is-soon { border-style: dashed; opacity: 0.85; }
.stack__lines { display: grid; grid-template-columns: repeat(5, 1fr); height: 54px; }
.stack__lines i { justify-self: center; width: 1px; height: 100%; background: linear-gradient(#fff5, var(--brand)); transform-origin: top; animation: grow-y 0.9s var(--ease) both paused; }
.stack.is-in .stack__lines i { animation-play-state: running; }
.stack__lines i:nth-child(2) { animation-delay: 0.1s; } .stack__lines i:nth-child(3) { animation-delay: 0.2s; } .stack__lines i:nth-child(4) { animation-delay: 0.3s; } .stack__lines i:nth-child(5) { animation-delay: 0.4s; }
.stack__core { position: relative; border-radius: 24px; padding: 1.6rem; background: linear-gradient(180deg, rgba(37, 99, 235, 0.22), rgba(255, 255, 255, 0.05)); border: 1px solid rgba(147, 180, 255, 0.35); box-shadow: 0 0 80px rgba(37, 99, 235, 0.25); }
.stack__core-h { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.stack__core-h img { height: 28px; width: auto; }
.stack__core-h span { font: 600 0.74rem var(--font); letter-spacing: 0.16em; text-transform: uppercase; color: #b8ccff; }
.stack__core-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.stack__core-g > div { display: grid; grid-template-columns: 20px 1fr; column-gap: 0.7rem; padding: 0.95rem; border-radius: 12px; background: rgba(8, 10, 20, 0.55); border: 1px solid rgba(255, 255, 255, 0.08); }
.stack__core-g .ic { color: #93b4ff; grid-row: span 2; margin-top: 2px; }
.stack__core-g b { color: #fff; font-size: 0.92rem; font-weight: 600; }
.stack__core-g span { color: #9fabbd; font-size: 0.83rem; line-height: 1.4; }

/* product cards */
.pgrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
.pcard { grid-column: span 3; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-1); transition: transform 0.35s var(--ease-io), box-shadow 0.35s; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.pcard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: radial-gradient(90% 100% at 20% 0%, color-mix(in srgb, var(--accent) 16%, #fff), color-mix(in srgb, var(--accent) 5%, var(--bg))); }
.pcard__media .frame--desktop { position: absolute; left: 9%; top: 13%; width: 92%; transition: transform 0.6s var(--ease); }
.pcard:hover .pcard__media .frame--desktop { transform: translate(-2%, -3%) scale(1.04); }
.pcard__media--phone .frame--phone { position: absolute; left: 22%; top: 12%; width: 27%; transition: transform 0.6s var(--ease); }
.pcard__media--phone .frame--b { left: 53%; top: 24%; }
.pcard:hover .pcard__media--phone .frame--phone { transform: translateY(-6%); }
.pcard__media--soon { display: grid; place-items: center; background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(102, 117, 138, 0.06) 14px 15px), radial-gradient(70% 90% at 50% 40%, #fff, var(--bg-2)); }
.pcard__media--soon b { position: relative; z-index: 1; display: grid; place-items: center; width: 84px; height: 84px; border-radius: 22px; background: var(--ink); color: #fff; font: 700 1.5rem var(--font-head); box-shadow: inset 0 -5px 0 var(--gold), var(--shadow-2); }
.pulse { position: absolute; left: 50%; top: 50%; width: 240px; height: 240px; margin: -120px 0 0 -120px; border-radius: 50%; border: 1.5px solid var(--gold); opacity: 0; animation: pulse-ring 3.2s var(--ease) infinite; }
.pulse--2 { animation-delay: 1.6s; }
.pcard__body { display: flex; flex-direction: column; gap: 0.9rem; padding: 1.5rem 1.6rem 1.7rem; flex: 1; }
.pcard__h { display: flex; align-items: center; gap: 0.85rem; }
.pcard__h h3 { font-size: 1.3rem; letter-spacing: -0.03em; }
.pcard__h small { color: var(--muted); font-size: 0.82rem; }
.pcard__h .pill { margin-left: auto; }
.pcard__body p { margin: 0; color: var(--muted); }
.pcard__body .link { margin-top: auto; padding-top: 0.4rem; }
.pcard--soon { grid-column: span 6; flex-direction: row; border-style: dashed; background: rgba(255, 255, 255, 0.6); }
.pcard--soon .pcard__media { flex: 0 0 34%; aspect-ratio: auto; min-height: 220px; }
.pcard--soon .pcard__body { justify-content: center; }

/* about */
.about { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.about__who p { color: var(--muted); font-size: 1.05rem; }
.about__who .lead { color: var(--ink-2); font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.5; }
.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.tags li { padding: 0.55rem 1.1rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); font: 600 0.9rem var(--font-head); letter-spacing: -0.01em; color: var(--ink-2); transition: transform 0.25s var(--ease-io), background 0.25s, color 0.25s, border-color 0.25s; }
.tags li:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px) rotate(-1.5deg); }
.tags li:nth-child(4n+1)::before { content: "#"; color: var(--brand); margin-right: 1px; }
.tags li:not(:nth-child(4n+1))::before { content: "#"; color: var(--gold); margin-right: 1px; }
.leader { display: grid; grid-template-columns: 110px 1fr; gap: 1.2rem; padding: 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-1); }
.leader img { width: 110px; height: 132px; object-fit: cover; object-position: 50% 12%; border-radius: 12px; }
.leader b { display: block; font: 700 1.1rem var(--font-head); letter-spacing: -0.02em; }
.leader span { display: block; color: var(--brand); font-size: 0.8rem; font-weight: 600; margin: 0.15rem 0 0.6rem; }
.leader p { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.5; }
.about__ph { margin: clamp(3rem, 6vw, 5rem) 0 1.4rem; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.phil { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.phil__i { padding: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: transform 0.3s var(--ease-io), box-shadow 0.3s; }
.phil__i:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.phil__i h4 { font-size: 1.1rem; letter-spacing: -0.025em; margin-bottom: 0.45rem; }
.phil__i p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* contact */
.section--contact { background: linear-gradient(180deg, var(--bg) 0%, #efece3 100%); }
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact__copy .lead { margin: 1.2rem 0 0; }
.contact__mail { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 1rem; padding: 0.75rem 1.1rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 600; transition: box-shadow 0.25s, transform 0.25s; }
.contact__mail:hover { box-shadow: var(--shadow-1); transform: translateY(-2px); }
.contact__mail .ic { color: var(--brand); }
.form { display: grid; gap: 1rem; padding: clamp(1.4rem, 3vw, 2.2rem); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-2); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: grid; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: #33475b; }
.form input, .form select, .form textarea { width: 100%; padding: 0.8rem 0.95rem; border: 1px solid #dcd8cc; border-radius: 12px; background: #fdfcfa; font: 400 0.98rem var(--font); color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
.form textarea { resize: vertical; min-height: 120px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; background: #fff; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14); }
.form .btn { justify-self: start; }
.form__hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form .btn:disabled { opacity: 0.7; cursor: progress; }
.form.is-sent .btn:disabled { opacity: 1; cursor: default; }
.form__note a { color: var(--ink); text-decoration: underline; }
.form__note { margin: 0; font-size: 0.8rem; color: var(--muted-2); }
.form.is-sent .btn { background: #0f7b5f; }

/* footer */
.site-footer { background: #0c0c0c; color: #a9b2c0; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
.site-footer__logo { height: 30px; width: auto; margin-bottom: 1rem; }
.site-footer p { max-width: 26rem; font-size: 0.92rem; }
.site-footer h4 { color: #fff; font: 600 0.74rem var(--font); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer__grid a { display: block; padding: 0.22rem 0; font-size: 0.93rem; transition: color 0.2s; }
.site-footer__grid a:hover { color: #fff; }
.site-footer em { font-style: normal; font-size: 0.7rem; padding: 0.1rem 0.45rem; margin-left: 0.3rem; border-radius: 999px; background: #2a2418; color: var(--gold); }
.site-footer__legal { margin: 3rem 0 0; padding-top: 1.4rem; border-top: 1px solid #222; font-size: 0.82rem; max-width: none; }

/* ---------- product pages ---------- */
.phero { position: relative; padding: calc(var(--h) + clamp(2rem, 5vw, 4rem)) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.phero__bg i { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; animation: drift 14s var(--ease-io) infinite; }
.phero__bg i:first-child { width: 560px; height: 560px; right: -120px; top: -140px; background: color-mix(in srgb, var(--accent) 34%, transparent); }
.phero__bg i:last-child { width: 420px; height: 420px; left: -160px; bottom: -160px; background: color-mix(in srgb, var(--gold) 26%, transparent); animation-delay: -6s; }
.phero__in { position: relative; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.phero__in--phone { grid-template-columns: 1.05fr 0.95fr; }
.crumb { display: inline-block; margin-bottom: 1.4rem; font-size: 0.86rem; font-weight: 500; color: var(--muted); transition: color 0.2s, transform 0.2s; }
.crumb:hover { color: var(--ink); transform: translateX(-3px); }
.phero__id { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.1rem; }
.phero__id .eyebrow { margin: 0; }
.phero__title { font-size: clamp(2.5rem, 5.6vw, 4.6rem); font-weight: 700; letter-spacing: -0.045em; line-height: 1; }
.phero__tag { margin: 1.3rem 0 1rem; font: 600 clamp(1.2rem, 2.2vw, 1.6rem)/1.3 var(--font-head); letter-spacing: -0.025em; color: var(--ink-2); }
.phero__lead { color: #4a5b70; font-size: 1.05rem; max-width: 34rem; }
.phero .hero__cta { animation: none; margin-top: 1.6rem; }
.phero__visual { position: relative; }
.phero__visual::before { content: ""; position: absolute; inset: 8% 4% -6%; border-radius: 40px; background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 24%, transparent), transparent); filter: blur(30px); z-index: -1; }

.soon-orb { position: relative; width: min(100%, 420px); aspect-ratio: 1; margin-inline: auto; display: grid; place-items: center; }
.soon-orb span { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--gold); opacity: 0; animation: pulse-ring 4.5s var(--ease) infinite; }
.soon-orb span:nth-child(2) { animation-delay: 1.5s; } .soon-orb span:nth-child(3) { animation-delay: 3s; }
.soon-orb b { display: grid; place-items: center; width: 34%; aspect-ratio: 1; border-radius: 26%; background: var(--ink); color: #fff; font: 700 clamp(1.6rem, 4vw, 2.6rem) var(--font-head); box-shadow: inset 0 -7px 0 var(--gold), var(--shadow-2); animation: float 5s var(--ease-io) infinite; }

/* device frames */
.frame { margin: 0; background: #fff; box-shadow: var(--shadow-2); position: relative; }
.frame img { width: 100%; height: auto; }
.frame--desktop { border: 1px solid #dedad0; border-radius: 14px; overflow: hidden; }
.frame__bar { display: flex; gap: 6px; padding: 0.6rem 0.8rem; background: #f4f1ea; border-bottom: 1px solid #e6e2d8; }
.frame__bar i { width: 9px; height: 9px; border-radius: 50%; background: #d8d3c6; }
.frame--phone { width: min(100%, 270px); padding: 8px; border-radius: 36px; background: #111; border: 1px solid #000; }
.frame--phone img { border-radius: 28px; }
.frame__notch { position: absolute; z-index: 2; top: 15px; left: 50%; width: 30%; height: 14px; margin-left: -15%; border-radius: 999px; background: #111; }
.phones { position: relative; display: flex; justify-content: center; gap: 1.4rem; align-items: flex-start; padding-block: 1rem; }
.phones .frame--phone { width: min(44%, 250px); animation: float 6s var(--ease-io) infinite; }
.phones .frame--b { margin-top: 3.5rem; animation-delay: -2.5s; }

.subnav { position: sticky; top: var(--h); z-index: 40; background: rgba(248, 246, 241, 0.86); backdrop-filter: saturate(1.4) blur(14px); border-block: 1px solid var(--line); }
.subnav__in { display: flex; gap: 0.3rem; overflow-x: auto; scrollbar-width: none; padding-block: 0.55rem; }
.subnav__in::-webkit-scrollbar { display: none; }
.subnav a { flex: none; padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.88rem; font-weight: 500; color: var(--muted); transition: color 0.2s, background 0.2s; }
.subnav a:hover { color: var(--ink); background: rgba(17, 17, 17, 0.05); }
.subnav a.is-active { color: #fff; background: var(--ink); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { display: flex; flex-direction: column; gap: 0.6rem; padding: 0.4rem 2rem; }
.stat:first-child { padding-left: 0; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat__l { color: var(--muted); font-size: 0.98rem; line-height: 1.4; max-width: 17rem; }

.glance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.glance__i { background: #fff; padding: 1.7rem; transition: background 0.25s; }
.glance__i:hover { background: #fdfcf9; }
.glance__i:last-child:nth-child(3n+1) { grid-column: span 3; }
.glance__i:last-child:nth-child(3n+2) { grid-column: span 2; }
.glance__n { display: block; margin-bottom: 1.4rem; font: 700 0.8rem var(--font-head); letter-spacing: 0.08em; color: var(--accent); }
.glance__i h4 { font-size: 1.12rem; letter-spacing: -0.025em; margin-bottom: 0.5rem; }
.glance__i p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.glance .reveal.is-in { animation-name: content-rise; }

/* features */
.feats { display: grid; gap: clamp(4rem, 8vw, 7rem); }
.group-h { max-width: 40rem; margin-bottom: -1.5rem; padding-top: 1rem; }
.group-h h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.group-h p { margin: 0.6rem 0 0; color: var(--muted); }
.feat { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feat--flip .feat__media { order: -1; }
.feat--flip { grid-template-columns: 1.1fr 0.9fr; }
.feat--phone { grid-template-columns: 1.15fr 0.85fr; }
.feat--phone.feat--flip { grid-template-columns: 0.85fr 1.15fr; }
.feat--noimg { grid-template-columns: 1fr; max-width: 52rem; padding: 2rem 2.2rem; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 18px; box-shadow: var(--shadow-1); }
.feat__n { display: block; margin-bottom: 1rem; font: 700 0.85rem var(--font-head); letter-spacing: 0.1em; color: var(--accent); }
.feat__n::after { content: ""; display: inline-block; width: 38px; height: 1.5px; margin-left: 0.7rem; vertical-align: middle; background: currentColor; opacity: 0.5; }
.feat h3 { font-size: clamp(1.55rem, 2.7vw, 2.1rem); margin-bottom: 1rem; }
.feat__text > p { color: #4a5b70; font-size: 1.02rem; }
.why { margin-top: 1.4rem; padding: 1.2rem 1.3rem; background: color-mix(in srgb, var(--accent) 6%, #fff); border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line)); border-radius: 14px; }
.why b { display: block; margin-bottom: 0.7rem; font: 700 0.72rem var(--font); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.why li { display: flex; gap: 0.6rem; padding: 0.28rem 0; font-size: 0.93rem; color: var(--ink-2); line-height: 1.45; }
.why .ic { width: 17px; height: 17px; margin-top: 2px; color: var(--accent); }
.feat__media { position: relative; }
.feat__glow { position: absolute; inset: 10% 6%; border-radius: 50%; background: color-mix(in srgb, var(--accent) 22%, transparent); filter: blur(60px); z-index: 0; }
.feat__media > div:last-child { position: relative; z-index: 1; will-change: transform; }
.feat--phone .feat__media { display: grid; place-items: center; padding: 2rem 1rem; border-radius: 28px; background: radial-gradient(80% 80% at 50% 30%, color-mix(in srgb, var(--accent) 13%, #fff), color-mix(in srgb, var(--accent) 4%, var(--bg-2))); }
.feat--phone .feat__media .frame { width: min(100%, 280px); margin-inline: auto; }
.feat--phone .feat__glow { display: none; }
.section--tint .feat__media .frame--desktop { box-shadow: 0 24px 70px rgba(17, 17, 17, 0.16); }

/* audience */
.aud { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.aud__i { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.6rem 1.4rem 0.4rem 0; }
.aud__i + .aud__i { padding-left: 1.4rem; border-left: 1px solid var(--line); }
.aud__i b { font: 600 1.1rem/1.25 var(--font-head); letter-spacing: -0.02em; }
.aud__i span { color: var(--muted); font-size: 0.93rem; }

/* architecture */
.arch + .arch { margin-top: clamp(3.5rem, 7vw, 5.5rem); }
.arch h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.arch__i { max-width: 44rem; margin: 0.7rem 0 2rem; color: #b9c2d0; }
.arch__layers { display: grid; gap: 0.75rem; }
.layer { display: grid; grid-template-columns: 230px 1fr; gap: 1.2rem; padding: 1rem; border-radius: 16px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.09); }
.layer__h { display: grid; grid-template-columns: auto 1fr; column-gap: 0.7rem; align-content: start; padding: 0.4rem 0.4rem 0.4rem 0.5rem; }
.layer__n { grid-row: span 2; font: 700 0.78rem var(--font-head); color: color-mix(in srgb, var(--accent) 55%, #fff); padding-top: 3px; }
.layer__h b { color: #fff; font: 600 1rem var(--font-head); letter-spacing: -0.01em; }
.layer__h small { color: #8fa0b5; font-size: 0.8rem; line-height: 1.35; }
.layer__items { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.node { flex: 1 1 190px; display: flex; flex-direction: column; gap: 0.2rem; padding: 0.8rem 0.95rem; border-radius: 11px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); transition: background 0.2s, border-color 0.2s, transform 0.25s var(--ease-io); }
.node:hover { background: rgba(255, 255, 255, 0.11); border-color: color-mix(in srgb, var(--accent) 60%, #fff); transform: translateY(-2px); }
.node b { color: #fff; font-size: 0.9rem; font-weight: 600; }
.node span { color: #a2afc0; font-size: 0.8rem; line-height: 1.4; }

/* coming-soon notify + related + CTA band */
.notify { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2.5rem; padding: 2rem 2.2rem; border-radius: 22px; background: var(--ink); color: #fff; }
.notify h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.4rem; }
.notify p { margin: 0; color: #b9c2d0; }
.notify .btn { background: #f8f6f1; color: #111; box-shadow: none; }
.minis { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.9rem; }
.mini { display: flex; align-items: center; gap: 0.9rem; padding: 1.1rem 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; transition: transform 0.3s var(--ease-io), box-shadow 0.3s, border-color 0.3s; }
.mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.mini__t { display: flex; flex-direction: column; line-height: 1.25; }
.mini__t b { font: 600 1.02rem var(--font-head); letter-spacing: -0.02em; }
.mini__t small { color: var(--muted); font-size: 0.8rem; }
.mini__go { margin-left: auto; color: var(--muted); transition: transform 0.25s, color 0.25s; }
.mini:hover .mini__go { transform: translateX(4px); color: var(--ink); }
.cta-band { background: #111; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta-band__in { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.4rem); }

/* ---------- responsive ---------- */
@media (max-width: 1040px) {
  .caps, .caps--4 { grid-template-columns: repeat(2, 1fr); }
  .caps--3 { grid-template-columns: repeat(2, 1fr); }
  .stack__top { grid-template-columns: repeat(3, 1fr); }
  .stack__lines { display: none; }
  .stack__top { margin-bottom: 1rem; }
  .stack__core-g { grid-template-columns: repeat(2, 1fr); }
  .aud, .inds__g { grid-template-columns: repeat(2, 1fr); }
  .aud__i:nth-child(3), .ind:nth-child(3) { padding-left: 0; border-left: 0; }
  .aud__i:nth-child(n+3), .ind:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 1.4rem; }
  .layer { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  :root { --h: 62px; }
  .burger { display: block; }
  .nav { position: fixed; inset: var(--h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0.2rem; padding: 0.8rem 1rem 1.2rem; background: rgba(248, 246, 241, 0.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); box-shadow: 0 30px 60px rgba(17, 17, 17, 0.12); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity 0.25s, transform 0.3s var(--ease), visibility 0.25s; max-height: calc(100svh - var(--h)); overflow-y: auto; }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .site-header.menu-open { background: rgba(248, 246, 241, 0.98); }
  .nav > a, .nav__dd-t { padding: 0.8rem 1rem; font-size: 1.02rem; }
  .nav__dd .dd { position: static; width: auto; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent; padding: 0 0 0.4rem 0.6rem; }
  .nav__dd-t .ic { display: none; }
  .nav__cta { margin: 0.5rem 0 0; }
  .split, .about, .contact, .phero__in, .phero__in--phone { grid-template-columns: 1fr; }
  .phero__visual { order: 2; }
  .feat, .feat--flip, .feat--phone, .feat--phone.feat--flip { grid-template-columns: 1fr; }
  .feat--flip .feat__media { order: 0; }
  .pgrid { grid-template-columns: 1fr; }
  .pcard, .pcard--soon { grid-column: auto; }
  .pcard--soon { flex-direction: column; }
  .pcard--soon .pcard__media { flex: none; min-height: 190px; }
  .phil { grid-template-columns: repeat(2, 1fr); }
  .glance { grid-template-columns: repeat(2, 1fr); }
  .glance__i:last-child:nth-child(n) { grid-column: auto; }
  .glance__i:last-child:nth-child(odd) { grid-column: span 2; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid > div:first-child { grid-column: 1 / -1; }
  .hero { flex-direction: column; align-items: stretch; justify-content: flex-start; padding-bottom: 0; }
  .hero__in { order: 1; }
  .hero__bg { order: 2; position: relative; inset: auto; height: 98vw; margin-top: 1.5rem; overflow: hidden; animation: none; background-size: 220% auto; background-position: 96% 41%; }
  .hero__fade { background: linear-gradient(180deg, #fcf9f2 0%, rgba(252, 249, 242, 0) 16%, rgba(248, 246, 241, 0) 88%, var(--bg) 100%); top: auto; height: 98vw; bottom: 0; }
  .scroll-cue { display: none; }
  .stats { grid-template-columns: 1fr; gap: 1.6rem; }
  .stat, .stat:first-child { padding: 0; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); padding-top: 1.6rem; }
  .notify { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .caps, .caps--3, .caps--4, .phil, .glance { grid-template-columns: 1fr; }
  .aud, .inds__g { grid-template-columns: 1fr; }
  .aud__i, .ind, .aud__i + .aud__i, .ind + .ind { padding: 1.2rem 0 0.2rem; border-left: 0; margin-top: 0; }
  .aud__i + .aud__i, .ind + .ind { border-top: 1px solid var(--line); }
  .form__row { grid-template-columns: 1fr; }
  .stack__top { grid-template-columns: repeat(2, 1fr); }
  .stack__core-g { grid-template-columns: 1fr; }
  .leader { grid-template-columns: 84px 1fr; }
  .leader img { width: 84px; height: 104px; }
  .phones { gap: 0.8rem; }
  .phones .frame--phone { width: 47%; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .feat--noimg { padding: 1.4rem; }
  .cta-band__in { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; animation-delay: 0ms !important; }
  .js .reveal, .js .reveal-icon { opacity: 1; }
  .w > span { transform: none; }
  .marquee__t { animation: none; }
}
