/* =========================================================
   Ruminski Labs — marketing site
   Vanilla CSS. Mobile-first. One disciplined accent.
   ========================================================= */

:root {
  /* Palette — deep space */
  --bg:            #0A0E1A;
  --bg-2:          #0C1120;
  --surface:       #121A2E;
  --surface-2:     #161F38;
  --text:          #E8ECF4;
  --muted:         #8A94A8;
  --accent:        #4DA3FF;
  --accent-soft:   rgba(77, 163, 255, 0.14);
  --accent-line:   rgba(77, 163, 255, 0.32);
  --hairline:      rgba(232, 236, 244, 0.10);
  --hairline-2:    rgba(232, 236, 244, 0.06);

  /* Type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Rhythm */
  --container: 1120px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(5rem, 12vw, 9rem);
  --radius: 18px;
  --radius-sm: 12px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* offset for sticky nav on anchor jumps */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  font-feature-settings: "ss01", "cv05";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle vignette that keeps the dark base from feeling flat */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 800px at 50% -10%, rgba(77, 163, 255, 0.10), transparent 60%),
    radial-gradient(900px 700px at 85% 110%, rgba(77, 163, 255, 0.05), transparent 55%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

::selection { background: rgba(77, 163, 255, 0.30); color: #fff; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  background: var(--accent);
  color: #061021;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: 0 0 10px 10px;
  z-index: 100;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.mono { font-family: var(--font-mono); }

/* ---------- Eyebrow (monospace label) ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0;
  max-width: 100%;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  flex: none;
  background: var(--accent-line);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav.is-scrolled {
  background: rgba(10, 14, 26, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--hairline);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}
.wordmark__mark {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  position: relative;
  flex: none;
  box-shadow: 0 0 12px rgba(77, 163, 255, 0.45);
}
.wordmark__mark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
}
.nav__links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover,
.nav__links a:focus-visible,
.nav__links a.is-active { color: var(--text); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.hero__glow {
  position: absolute;
  left: 50%; top: 46%;
  width: min(760px, 92vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(77, 163, 255, 0.20), rgba(77, 163, 255, 0.05) 38%, transparent 66%);
  filter: blur(8px);
}

/* Orbital motif — concentric rings tilted in 3D, slowly rotating */
.orbit-system {
  position: absolute;
  left: 50%; top: 46%;
  width: min(640px, 86vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  perspective: 1000px;
}
.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  transform-style: preserve-3d;
}
.orbit::after {
  /* the orbiting body — a small glowing dot riding the ring */
  content: "";
  position: absolute;
  top: -4px; left: 50%;
  width: 7px; height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 2px rgba(77, 163, 255, 0.8);
}
.orbit--1 {
  transform: rotateX(72deg) rotateZ(0deg);
  border-color: rgba(77, 163, 255, 0.40);
  animation: spin 18s linear infinite;
}
.orbit--2 {
  inset: 12%;
  transform: rotateX(66deg) rotateY(28deg);
  border-color: rgba(77, 163, 255, 0.26);
  animation: spin 26s linear infinite reverse;
}
.orbit--3 {
  inset: 26%;
  transform: rotateX(58deg) rotateY(-22deg);
  border-color: rgba(77, 163, 255, 0.18);
  animation: spin 34s linear infinite;
}
.orbit--2::after { width: 5px; height: 5px; margin-left: -2.5px; top: -3px; }
.orbit--3::after { width: 9px; height: 9px; margin-left: -4.5px; top: -4.5px; }

.orbit-core {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #cfe6ff, var(--accent) 60%, #2b6fc4);
  box-shadow: 0 0 24px 6px rgba(77, 163, 255, 0.55);
}

@keyframes spin {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to   { transform: rotateX(72deg) rotateZ(360deg); }
}
/* each ring needs its own keyframes to preserve its unique tilt */
.orbit--2 { animation-name: spin2; }
.orbit--3 { animation-name: spin3; }
@keyframes spin2 {
  from { transform: rotateX(66deg) rotateY(28deg) rotateZ(0deg); }
  to   { transform: rotateX(66deg) rotateY(28deg) rotateZ(360deg); }
}
@keyframes spin3 {
  from { transform: rotateX(58deg) rotateY(-22deg) rotateZ(0deg); }
  to   { transform: rotateX(58deg) rotateY(-22deg) rotateZ(360deg); }
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 1.9rem);
  max-width: 880px;
}
/* Make children fill the container width so text wraps instead of
   sizing to max-content (which would overflow under align-items:center). */
.hero__content > * { width: 100%; }
.hero .eyebrow { justify-content: center; flex-wrap: wrap; }
.hero__title {
  font-size: clamp(2rem, 8.4vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
  background: linear-gradient(180deg, #ffffff 0%, #cdd6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subhead {
  font-size: clamp(1.05rem, 1rem + 0.7vw, 1.35rem);
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.55;
}
.hero__cta { margin-top: 0.25rem; }

/* scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.hero__scroll-line {
  width: 2px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollcue 1.8s var(--ease) infinite;
}
@keyframes scrollcue {
  0%   { transform: translateY(-6px); opacity: 0; }
  40%  { opacity: 1; }
  80%  { transform: translateY(7px); opacity: 0; }
  100% { opacity: 0; }
}

/* =========================================================
   BUTTONS / LINKS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(180deg, #5aabff, var(--accent));
  color: #04122a;
  box-shadow: 0 6px 24px rgba(77, 163, 255, 0.30), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(77, 163, 255, 0.45), inset 0 1px 0 rgba(255,255,255,0.45);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}
.link-arrow span {
  transition: transform 0.25s var(--ease);
}
.link-arrow:hover span,
.link-arrow:focus-visible span { transform: translateX(4px); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding-block: var(--section-y); position: relative; }

.section__head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.section__title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
}
.section__lead {
  font-size: clamp(1.1rem, 1rem + 0.9vw, 1.4rem);
  line-height: 1.55;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ---------- Shared card ---------- */
.card {
  background: linear-gradient(180deg, rgba(22, 31, 56, 0.55), rgba(18, 26, 46, 0.55));
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.pillar {
  padding: clamp(1.6rem, 4vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pillar__index {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.pillar__title {
  font-size: 1.4rem;
  font-weight: 600;
}
.pillar__body { color: var(--muted); }

.pillar:hover {
  transform: translateY(-5px);
  border-color: var(--accent-line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--accent-soft);
}

/* ---------- Projects ---------- */
.projects { display: grid; gap: 1.5rem; }
/* Add additional (non-flagship) cards inside this grid as the studio ships more apps. */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.project { overflow: hidden; display: flex; flex-direction: column; }

.project__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background-color: #0e1730;
  border-bottom: 1px solid var(--hairline);
}
.project__body {
  padding: clamp(1.4rem, 3.5vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.project__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.project__title { font-size: 1.5rem; font-weight: 600; }
.project__desc { color: var(--muted); flex: 1; }
.project__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.project__tags li {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
}
.project__body .link-arrow { margin-top: 0.3rem; }

.project:hover {
  transform: translateY(-6px);
  border-color: var(--accent-line);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42), 0 0 0 1px var(--accent-soft);
}

/* Featured flagship: image + content side by side, full width */
.project--featured {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: stretch;
}
.project--featured .project__img {
  height: 100%;
  aspect-ratio: 16 / 10;
  border-bottom: none;
  border-right: 1px solid var(--hairline);
}
.project--featured .project__body {
  justify-content: center;
  gap: 1.05rem;
  padding: clamp(1.8rem, 3.4vw, 3rem);
}
.project--featured .project__title {
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.15rem);
}
.project--featured .project__desc {
  flex: none;
  max-width: 46ch;
}
@media (max-width: 820px) {
  .project--featured { grid-template-columns: 1fr; }
  .project--featured .project__img {
    /* Reset the desktop height:100% — in a stacked single-column grid it
       resolves against an indefinite container and iOS Safari blows the
       image up to its intrinsic height. Let aspect-ratio drive height. */
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
}

/* ---------- Team grid ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  justify-content: center;
  max-width: 460px;
  margin-inline: auto;
}
.member {
  padding: clamp(2rem, 5vw, 2.8rem) 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}
.member__avatar,
.member__photo {
  width: 132px; height: 132px;
  border-radius: 50%;
  margin-bottom: 1.1rem;
}
.member__avatar {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(77,163,255,0.55), transparent 60%),
    linear-gradient(150deg, #1b2b4a, #0f1830);
  background-color: #1b2640;
  border: 1px solid var(--accent-line);
  box-shadow: 0 0 0 6px rgba(77, 163, 255, 0.06), 0 14px 36px rgba(0,0,0,0.4);
}
.member__photo {
  object-fit: cover;
  object-position: center 35%;
  border: 1px solid var(--accent-line);
  box-shadow: 0 0 0 6px rgba(77, 163, 255, 0.06), 0 14px 36px rgba(0, 0, 0, 0.4);
}
.member__initials {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.member__name { font-size: 1.45rem; font-weight: 600; }
.member__role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.15rem;
}

.socials {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: flex;
  gap: 0.7rem;
}
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.socials a:hover,
.socials a:focus-visible {
  color: var(--accent);
  border-color: var(--accent-line);
  background: var(--accent-soft);
  transform: translateY(-3px);
}

.member:hover {
  border-color: var(--accent-line);
  box-shadow: 0 22px 48px rgba(0,0,0,0.4), 0 0 0 1px var(--accent-soft);
}

/* =========================================================
   CONTACT
   ========================================================= */
.section--contact { text-align: center; }
.contact {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter);
  background:
    radial-gradient(700px 400px at 50% -30%, rgba(77,163,255,0.16), transparent 70%),
    linear-gradient(180deg, rgba(22,31,56,0.5), rgba(18,26,46,0.4));
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 6px);
  position: relative;
  overflow: hidden;
}
.contact__title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 600;
}
.contact__lead { color: var(--muted); max-width: 42ch; }
.contact .btn { margin-top: 0.5rem; font-family: var(--font-mono); letter-spacing: 0.02em; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--hairline);
  margin-top: var(--section-y);
  background: var(--bg-2);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding-block: clamp(2.5rem, 6vw, 3.5rem);
}
.footer__brand { display: flex; flex-direction: column; gap: 0.7rem; }
.wordmark--sm { font-size: 0.9rem; }
.footer__tagline { color: var(--muted); font-size: 0.9rem; }

.footer__legal {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: left;
}
.footer__legal .footer__company { color: var(--text); font-weight: 600; }
.footer__legal a { color: var(--accent); }

.footer__bar {
  border-top: 1px solid var(--hairline-2);
}
.footer__bar p {
  padding-block: 1.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* =========================================================
   MOTION — load + scroll reveals
   ========================================================= */
.reveal-load,
.reveal {
  opacity: 0;
  transform: translateY(22px);
}
/* When JS marks the document ready, hero elements animate in (staggered via --d) */
.js-ready .reveal-load {
  animation: fadeUp 0.9s var(--ease) forwards;
  animation-delay: calc(var(--d, 0) * 110ms + 120ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* If JS never runs, never leave content invisible */
.no-js .reveal-load,
.no-js .reveal { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 640px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .nav__inner { padding-block: 0.9rem; }
  .nav__links { gap: 1.1rem; }
  .nav__links a { font-size: 0.85rem; }
  .footer__inner { flex-direction: column; gap: 1.6rem; }
  .footer__legal { text-align: left; }
  /* long hero eyebrow: smaller + tighter so it wraps to two tidy lines */
  .hero .eyebrow { font-size: 0.68rem; letter-spacing: 0.12em; }
  .hero { padding-top: 6rem; }
}

/* Very narrow phones: keep wordmark + all three nav links on one row */
@media (max-width: 430px) {
  .wordmark { font-size: 0.8rem; letter-spacing: 0.06em; gap: 0.5rem; }
  .wordmark__mark { width: 13px; height: 13px; }
  .nav__inner { padding-inline: 1.1rem; }
  .nav__links { gap: 0.9rem; }
  .nav__links a { font-size: 0.8rem; }
}

/* =========================================================
   REDUCED MOTION — honor user preference
   ========================================================= */
@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;
    scroll-behavior: auto !important;
  }
  .reveal-load,
  .reveal { opacity: 1 !important; transform: none !important; }
  .orbit::after,
  .orbit-core { box-shadow: 0 0 12px 2px rgba(77,163,255,0.6); }
  .hero__scroll-line { animation: none; opacity: 0.7; }
}
