/* ============================================================
   Flint — landing page
   "The Quiet Index": editorial minimalist, one ink-drop of blue.
   Messaging-led: problem → mechanism → payoff → privacy → download.
   Design tokens lifted from the Flint desktop app so the page
   wears the product's exact identity.
   ============================================================ */

:root {
  --bg: #f3f8ff;
  --surface: #ffffff;
  --surface-2: #eef5ff;
  --border: #e3ecf9;
  --border-strong: #cfddf2;
  --text: #16243b;
  --text-dim: #56657e;
  --text-faint: #91a1ba;
  --accent: #2f7bf6;
  --accent-soft: #5fa0fb;
  --accent-deep: #1f63d6;
  --accent-glow: rgba(47, 123, 246, 0.16);
  --green: #1fa971;
  --green-soft: rgba(31, 169, 113, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-btn: 11px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --shadow-whisper: 0 1px 2px rgba(22, 36, 59, 0.04);
  --shadow-float: 0 30px 80px var(--accent-glow);
  --maxw: 1120px;
  --section-pad: 132px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1000px 560px at 82% -8%, rgba(95, 160, 251, 0.18), transparent 60%),
    radial-gradient(820px 520px at -2% 106%, rgba(142, 203, 255, 0.16), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(47, 123, 246, 0.16);
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-pad) 0;
}

.rule {
  height: 1px;
  background: var(--border);
  border: none;
}

/* Eyebrow: tiny tracked label with a leading hairline */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--border-strong);
}
.eyebrow--center {
  justify-content: center;
}

/* Section heading */
.s-head {
  max-width: 38ch;
}
.s-head--center {
  max-width: 32ch;
  margin: 0 auto;
  text-align: center;
}
.s-title {
  margin-top: 18px;
  font-size: clamp(30px, 4.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.s-sub {
  margin-top: 18px;
  font-size: 18px;
  color: var(--text-dim);
  max-width: 56ch;
}
.s-head--center .s-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 13px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
/* The one loud element on the page. */
.btn-primary {
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  color: #fff;
  box-shadow: 0 6px 18px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(47, 123, 246, 0.26);
}
.btn-primary:active {
  transform: translateY(0);
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
}
.btn-primary.lg {
  padding: 16px 30px;
  font-size: 16.5px;
}
.btn-apple {
  width: 16px;
  height: 16px;
  margin-top: -1px;
}

/* Secondary action stays text-only — never competes with Download. */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dim);
  padding: 13px 6px;
  transition: color 0.18s ease;
}
.btn-ghost .arr {
  transition: transform 0.18s ease;
}
.btn-ghost:hover {
  color: var(--text);
}
.btn-ghost:hover .arr {
  transform: translateX(3px);
}

/* ---------- Nav (the one glass element) ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(22, 36, 59, 0.02);
}
.nav-in {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.16s ease;
}
.nav-link:hover {
  color: var(--text);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-signin {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dim);
  transition: color 0.16s ease;
}
.nav-signin:hover {
  color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 48px;
  align-items: center;
}
.pill-privacy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  box-shadow: var(--shadow-whisper);
}
.dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.hero-h1 {
  margin-top: 26px;
  font-size: clamp(40px, 5.7vw, 60px);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.04;
}
/* The single ink-drop of blue on the page. */
.ink {
  color: var(--accent);
}
.hero-sub {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.58;
  color: var(--text-dim);
  max-width: 40ch;
}
.hero-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-reassure {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-faint);
}
.hero-reassure b {
  font-weight: 600;
  color: var(--text-dim);
}

/* ---------- Hero network graph (the signature visual) ---------- */
.netgraph {
  position: relative;
  aspect-ratio: 6 / 5;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: radial-gradient(120% 100% at 50% 38%, #fbfdff, var(--surface-2));
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.galaxy-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.galaxy-label {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  fill: var(--text);
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 4px;
  stroke-linejoin: round;
}
.you-halo { fill: var(--accent-glow); }
.you-dot { fill: var(--accent); }
.you-ring { fill: none; stroke: #fff; stroke-width: 2.5; }
.you-label {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  fill: var(--accent-deep);
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 3px;
  stroke-linejoin: round;
}
.netgraph-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 13px;
  box-shadow: var(--shadow-whisper);
}

/* Animated relationship overlay — one community lights up at a time.
   JS (buildGalaxy) builds the lines; the conductor toggles .on / .lit. */
.galaxy-anim .lg {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.galaxy-anim .lg.on {
  opacity: 1;
}
.galaxy-anim .rel {
  stroke: var(--accent-soft);
  stroke-width: 1;
  opacity: 0.6;
  stroke-dasharray: 1;
  stroke-dashoffset: 1; /* undrawn until lit; retracts on exit */
  transition: stroke-dashoffset 0.5s ease;
}
.galaxy-anim .warm {
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.55s ease;
}
.galaxy-anim .lg.on .rel {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.galaxy-anim .lg.on .warm {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s;
}
.galaxy-anim .hop,
.galaxy-anim .tgt {
  fill: var(--accent-deep);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.galaxy-anim .lg.on .hop { opacity: 1; transition: opacity 0.3s ease 0.45s; }
.galaxy-anim .lg.on .tgt { opacity: 1; transition: opacity 0.3s ease 0.5s; }
.galaxy-anim .tgt-ring {
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 1.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.galaxy-anim .lg.on .tgt-ring {
  animation: tgtpulse 1.5s ease-out 0.55s infinite;
}
@keyframes tgtpulse {
  0% { transform: scale(0.55); opacity: 0.85; }
  100% { transform: scale(2.4); opacity: 0; }
}
/* the active community's label brightens with it */
.galaxy-label { transition: fill 0.4s ease; }
.galaxy-label.lit { fill: var(--accent-deep); }

/* reduced motion: a calm, connected graph — no cycling, no pulse */
.galaxy-anim.static .lg { opacity: 0.42; }
.galaxy-anim.static .rel { stroke-dashoffset: 0; }
.galaxy-anim.static .warm,
.galaxy-anim.static .hop,
.galaxy-anim.static .tgt,
.galaxy-anim.static .tgt-ring { display: none; }

/* the whole graph zooms/pans to the searched community */
.galaxy-stage {
  transform-origin: 0 0;
  transition: transform 1.05s cubic-bezier(0.45, 0.05, 0.2, 1);
}
/* the spark that rides the warm path during an introduction (SMIL-driven) */
.spark {
  fill: var(--accent-deep);
  filter: drop-shadow(0 0 4px var(--accent-soft));
}

/* search field — types who you're looking for */
.ng-search {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 38px;
  padding: 0 13px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  backdrop-filter: saturate(150%) blur(8px);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-whisper);
  font-size: 13.5px;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0; /* shown only once JS is live */
  transition: opacity 0.5s ease;
}
.netgraph.ng-live .ng-search { opacity: 1; }
.ng-search-ico { color: var(--accent); flex-shrink: 0; }
.ng-search-pre { color: var(--text-faint); }
.ng-search-q { color: var(--text); font-weight: 600; }
.ng-caret {
  display: inline-block;
  width: 1.5px;
  height: 15px;
  margin-left: 1px;
  background: var(--accent);
  vertical-align: -2px;
  animation: ngblink 1.05s steps(1) infinite;
}
@keyframes ngblink { 50% { opacity: 0; } }

/* the match Flint surfaces */
.ng-result {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  backdrop-filter: saturate(150%) blur(8px);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px var(--accent-glow);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: left bottom;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}
.ng-result.show { opacity: 1; transform: none; }
.ng-ava {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-deep);
  background: rgba(47, 123, 246, 0.14);
}
.ng-result-id { display: flex; flex-direction: column; line-height: 1.25; }
.ng-result-name { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.ng-result-role { font-size: 11px; color: var(--text-faint); }
.ng-result-tag {
  margin-left: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  box-shadow: 0 3px 10px var(--accent-glow);
}

/* ---------- Problem ---------- */
.problem {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.problem-body p {
  font-size: 18px;
  line-height: 1.68;
  color: var(--text-dim);
  max-width: 56ch;
}
.problem-aside {
  margin-top: 26px;
  font-size: clamp(21px, 2.6vw, 26px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--text) !important;
  max-width: 24ch;
}

/* ---------- How it works ---------- */
.steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding: 26px 22px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-whisper);
}
.step-n {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
}
.step-n::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin-top: 14px;
  border-radius: 2px;
  background: var(--accent);
}
.step-t {
  margin-top: 20px;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.step-d {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ---------- The graph figure (one warm path lit) ---------- */
.graphfig {
  margin: 72px auto 0;
  max-width: 660px;
}
.map-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fbfdff, var(--surface-2));
  box-shadow: var(--shadow-whisper);
  padding: 8px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.map-wrap svg { width: 100%; height: 100%; display: block; }
.ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.1;
}
/* The map's one earned moment of motion: contour rings draw themselves
   when the section scrolls into view. Default (no JS) state is fully drawn. */
.map-wrap.in .ring {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawring 1.5s cubic-bezier(0.35, 0.75, 0.3, 1) forwards;
}
.map-wrap.in .ring:nth-child(1) { animation-delay: 0.04s; }
.map-wrap.in .ring:nth-child(2) { animation-delay: 0.16s; }
.map-wrap.in .ring:nth-child(3) { animation-delay: 0.28s; }
.map-wrap.in .ring:nth-child(4) { animation-delay: 0.40s; }
.map-wrap.in .ring:nth-child(5) { animation-delay: 0.52s; }
.map-wrap.in .ring:nth-child(6) { animation-delay: 0.64s; }
@keyframes drawring {
  to { stroke-dashoffset: 0; }
}
.map-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  fill: var(--text-dim);
}
.map-label--lit { fill: var(--accent-deep); }
.map-node { fill: var(--accent); }
/* the lit warm path */
.map-path {
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.map-wrap.in .map-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawpath 1s ease 0.7s forwards;
}
@keyframes drawpath {
  to { stroke-dashoffset: 0; }
}
.map-hop { fill: var(--accent-deep); }
.map-target { fill: none; stroke: var(--accent-deep); stroke-width: 2; }
.map-target-dot { fill: var(--accent-deep); }
.map-cap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  font-size: 12.5px;
  color: var(--text-faint);
  text-align: center;
}

/* ---------- Benefits ---------- */
.benefit-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit {
  padding: 28px 28px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-whisper);
}
.benefit-stat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
}
.benefit-h {
  margin-top: 12px;
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.benefit-p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- Privacy band ---------- */
.privacy {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.privacy-statement {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.16;
  margin-top: 18px;
  max-width: 18ch;
}
.privacy-lead {
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 46ch;
}
.priv-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.priv-item {
  display: flex;
  gap: 14px;
  padding: 18px 4px;
  border-top: 1px solid var(--border);
}
.priv-item:last-child { border-bottom: 1px solid var(--border); }
.priv-ico {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.priv-h {
  font-size: 15px;
  font-weight: 600;
}
.priv-p {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- Final CTA ---------- */
.final {
  text-align: center;
}
.final-spark {
  filter: drop-shadow(0 6px 16px var(--accent-glow));
}
.final-h {
  margin-top: 26px;
  font-size: clamp(32px, 4.8vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.final-sub {
  margin-top: 20px;
  font-size: 17px;
  color: var(--text-dim);
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.final-note {
  font-size: 13px;
  color: var(--text-faint);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
}
.footer-in {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px 0;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
}
.footer-tag {
  font-size: 13px;
  color: var(--text-faint);
}
.footer-links {
  margin-left: auto;
  display: flex;
  gap: 26px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-faint);
  transition: color 0.16s ease;
}
.footer-links a:hover { color: var(--text-dim); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  :root { --section-pad: 96px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .hero { padding: 56px 0 72px; }
  .hero-sub { max-width: 50ch; }
  .hero-copy, .hero-mock { min-width: 0; }
  .netgraph { max-width: 520px; }
  .problem { grid-template-columns: 1fr; gap: 28px; }
  .problem-aside { max-width: 36ch; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-links { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .steps { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .nav-signin { display: none; }
  .galaxy-label { font-size: 21px; }
  .footer-in { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { margin-left: 0; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .map-wrap.in .ring { animation: none; stroke-dasharray: none; stroke-dashoffset: 0; }
  .map-wrap.in .map-path { animation: none; stroke-dasharray: none; stroke-dashoffset: 0; }
  .galaxy-stage { transition: none; }
  .ng-caret { display: none; }
  * { animation-duration: 0.001ms !important; }
}
