:root {
  --bg: #120b18;
  --bg-soft: #1a1123;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --text: #fff8fb;
  --muted: #dbcad9;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff5e8a;
  --accent-strong: #ff2d6f;
  --accent-soft: #ffbdd0;
  --gold: #ffd7a8;
  --shadow: 0 28px 80px rgba(10, 5, 14, 0.45);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 94, 138, 0.2), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 215, 168, 0.14), transparent 24%),
    linear-gradient(180deg, #1b1024 0%, #120b18 42%, #0f0915 100%);
  overflow-x: hidden;
}

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

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

code {
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.95em;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  max-width: 100%;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(16, 10, 22, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 20px 45px rgba(255, 45, 111, 0.35);
}

.button-secondary,
.button-small {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.button-large {
  min-width: 250px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-soft);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  padding: 4rem 0 2rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(1.02) contrast(1.02);
}

.hero-background-video.is-hidden {
  opacity: 0;
  pointer-events: none;
}

body.hero-video-fallback .hero-slide {
  opacity: 0;
}

body.hero-video-fallback .hero-slide.is-active {
  opacity: 1;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0.42;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 1200ms ease, transform 7000ms ease;
}

.hero-slide.is-active {
  opacity: 0.58;
  transform: scale(1);
}

.hero-slide-one {
  background-image: url("assets/hero-1.jpg");
}

.hero-slide-two {
  background-image: url("assets/hero-2.jpg");
}

.hero-slide-three {
  background-image: url("assets/hero-3.jpg");
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 10, 22, 0.84) 0%, rgba(17, 10, 22, 0.66) 42%, rgba(17, 10, 22, 0.48) 70%, rgba(17, 10, 22, 0.7) 100%),
    linear-gradient(180deg, rgba(18, 11, 24, 0.52) 0%, rgba(18, 11, 24, 0.18) 28%, rgba(18, 11, 24, 0.72) 100%);
}

.hero-media-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 102, 153, 0.3), transparent 26%),
    radial-gradient(circle at 80% 26%, rgba(255, 217, 176, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(16, 10, 22, 0.12), rgba(16, 10, 22, 0.62));
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 2.2rem;
  padding: 2.5rem 0 5rem;
  overflow: hidden;
}

.hero-copy h1,
.content-section h1,
.section-heading h2,
.showcase-copy h2,
.trust-panel h2,
.download-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(3.55rem, 8.3vw, 7.15rem);
  text-wrap: balance;
  text-shadow: 0 6px 26px rgba(8, 4, 12, 0.32);
}

.content-section h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
}

.hero-text,
.section-heading p,
.showcase-copy p,
.trust-panel p,
.download-card p,
.stat-card p,
.feature-card p,
.trust-card p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 560px;
  font-size: 1.08rem;
  margin: 1.4rem 0 0;
}

.hero-branding {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.brand-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #fff7fb;
  text-shadow: 0 0 22px rgba(255, 110, 160, 0.3);
  animation: brandGlow 5.8s ease-in-out infinite;
}

.brand-line {
  width: clamp(70px, 10vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 94, 138, 0));
  animation: linePulse 5.8s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
  min-width: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.hero-points span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 1.1rem;
}

.hero-glow {
  position: absolute;
  inset: 15% 10% 8% 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 94, 138, 0.46) 0%, rgba(255, 94, 138, 0.12) 38%, transparent 72%);
  filter: blur(24px);
}

.hero-photo-collage {
  position: relative;
  width: min(100%, 540px);
  min-height: 500px;
}

.photo-panel {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 8, 22, 0.08), rgba(16, 8, 22, 0.32));
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-panel-tall {
  top: 1rem;
  right: 2rem;
  width: min(100%, 420px);
  aspect-ratio: 0.8;
  animation: floatPhotoTall 8s ease-in-out infinite;
}

.photo-panel-wide {
  left: 0;
  bottom: 5rem;
  width: min(57%, 285px);
  aspect-ratio: 0.88;
  z-index: 2;
  animation: floatPhotoWide 7s ease-in-out infinite;
}

.photo-panel-accent {
  right: 1.2rem;
  bottom: 0.7rem;
  width: min(42%, 188px);
  aspect-ratio: 0.78;
  z-index: 3;
  animation: floatPhotoAccent 6.1s ease-in-out infinite;
}

.hero-orb,
.hero-heart {
  position: absolute;
  pointer-events: none;
}

.hero-orb {
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 215, 168, 0.28) 0%, rgba(255, 215, 168, 0.04) 60%, transparent 72%);
  filter: blur(6px);
  animation: orbPulse 7.2s ease-in-out infinite;
}

.orb-one {
  top: 3rem;
  left: 1rem;
  width: 150px;
  height: 150px;
}

.orb-two {
  right: 0.4rem;
  bottom: 8rem;
  width: 108px;
  height: 108px;
  animation-delay: 1.4s;
}

.hero-heart {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, rgba(255, 189, 208, 0.92), rgba(255, 94, 138, 0.9));
  transform: rotate(45deg);
  box-shadow: 0 0 22px rgba(255, 94, 138, 0.28);
  animation: floatHeart 6.8s ease-in-out infinite;
}

.hero-heart::before,
.hero-heart::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: inherit;
}

.hero-heart::before {
  top: -9px;
  left: 0;
}

.hero-heart::after {
  top: 0;
  left: -9px;
}

.heart-one {
  top: 5.8rem;
  right: 4.8rem;
}

.heart-two {
  left: 2.8rem;
  bottom: 2.6rem;
  width: 14px;
  height: 14px;
  animation-delay: 0.8s;
}

.heart-two::before,
.heart-two::after {
  width: 14px;
  height: 14px;
}

.heart-two::before {
  top: -7px;
}

.heart-two::after {
  left: -7px;
}

.hero-overlay-cta {
  position: absolute;
  top: 2.1rem;
  left: 1.2rem;
  z-index: 5;
  min-height: 62px;
  padding: 0 1.65rem;
  font-size: 1rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 22px 50px rgba(255, 45, 111, 0.4),
    0 0 0 8px rgba(255, 94, 138, 0.08);
}

.hero-install-card {
  position: relative;
  z-index: 4;
  width: min(100%, 420px);
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 94, 138, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(20, 12, 27, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 90px rgba(10, 5, 14, 0.55);
}

.install-kicker {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 800;
}

.hero-install-card strong {
  display: block;
  font-size: 1.52rem;
  line-height: 1.14;
}

.hero-install-card p {
  margin: 0.7rem 0 1rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.hero-install-button {
  width: 100%;
  min-height: 66px;
  font-size: 1.08rem;
  box-shadow: 0 24px 48px rgba(255, 45, 111, 0.42);
}

.stats-section {
  padding: 0 0 2rem;
}

.stats-grid,
.feature-grid,
.trust-cards,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-copy,
.showcase-copy,
.trust-panel,
.footer-brand,
.footer-links,
.stat-card,
.feature-card,
.screen-card,
.trust-card,
.download-card {
  min-width: 0;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.feature-card,
.screen-card,
.trust-card,
.download-card,
.site-footer,
.photo-panel {
  backdrop-filter: blur(14px);
}

.stat-card,
.feature-card,
.screen-card,
.trust-card {
  padding: 1.45rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.stat-card strong,
.feature-card h3,
.trust-card h3,
.screen-card figcaption {
  font-size: 1.08rem;
}

.content-section {
  padding: 4.5rem 0 1rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2,
.showcase-copy h2,
.trust-panel h2,
.download-card h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  min-height: 240px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-weight: 800;
}

.showcase-grid,
.trust-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.screen-card img {
  border-radius: 22px;
}

.screen-card figcaption {
  margin-top: 1rem;
  color: var(--muted);
}

.feature-list {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
}

.trust-grid {
  grid-template-columns: 1.05fr 1fr;
}

.trust-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-section {
  padding: 4.5rem 0 5.5rem;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 94, 138, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.site-footer {
  margin: 0 0 2rem;
  padding: 1.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  color: var(--muted);
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -18px, 0) scale(1.03);
  }
}

@keyframes floatPhotoTall {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(-3.5deg);
  }
}

@keyframes floatPhotoWide {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(3deg);
  }

  50% {
    transform: translate3d(0, -8px, 0) rotate(1deg);
  }
}

@keyframes floatPhotoAccent {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(6deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(4deg);
  }
}

@keyframes floatHeart {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(45deg) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(45deg) scale(1.08);
    opacity: 1;
  }
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes brandGlow {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.92;
    text-shadow: 0 0 18px rgba(255, 110, 160, 0.22);
  }

  50% {
    transform: translateY(-2px);
    opacity: 1;
    text-shadow: 0 0 28px rgba(255, 110, 160, 0.38);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scaleX(1);
    transform-origin: left center;
  }

  50% {
    opacity: 1;
    transform: scaleX(1.08);
    transform-origin: left center;
  }
}

@media (min-width: 961px) {
  .hero-grid,
  .showcase-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero-section {
    padding-top: 2rem;
  }

  .hero-grid,
  .stats-grid,
  .feature-grid,
  .showcase-grid,
  .trust-grid,
  .trust-cards,
  .footer-grid,
  .screens-grid,
  .download-card {
    grid-template-columns: 1fr;
  }

  .download-card {
    display: grid;
  }

  .hero-visual {
    min-height: 520px;
    justify-items: center;
  }

  .hero-photo-collage {
    width: min(100%, 470px);
    min-height: 460px;
  }

  .photo-panel-tall {
    right: 1rem;
    width: min(78%, 360px);
  }

  .photo-panel-wide {
    width: min(54%, 255px);
    bottom: 4.7rem;
  }

  .photo-panel-accent {
    width: min(39%, 175px);
    right: 0.6rem;
  }

  .hero-install-card {
    width: min(100%, 400px);
  }

  .hero-overlay-cta {
    top: 1.1rem;
    left: 1rem;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .hero-section,
  .stats-section,
  .content-section,
  .download-section,
  .site-footer {
    overflow-x: clip;
  }

  .container {
    width: 100%;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .nav-bar {
    min-height: 74px;
  }

  .button-small {
    display: none;
  }

  .hero-grid {
    padding-bottom: 3rem;
    gap: 1.5rem;
  }

  .hero-grid,
  .stats-grid,
  .feature-grid,
  .showcase-grid,
  .trust-grid,
  .trust-cards,
  .footer-grid,
  .screens-grid,
  .download-card,
  .hero-copy,
  .hero-visual,
  .section-heading,
  .showcase-copy,
  .trust-panel {
    width: calc(100vw - 2.4rem);
    max-width: calc(100vw - 2.4rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy h1 {
    max-width: 7ch;
    font-size: clamp(2.45rem, 12.5vw, 4rem);
    line-height: 0.98;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-text,
  .stat-card p,
  .feature-card p,
  .trust-card p,
  .screen-card figcaption {
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .hero-text,
  .stat-card,
  .feature-card,
  .trust-card,
  .screen-card,
  .showcase-copy,
  .trust-panel,
  .download-card,
  .section-heading,
  .stats-grid,
  .feature-grid,
  .screens-grid,
  .trust-cards,
  .hero-install-card {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points span {
    font-size: 0.88rem;
  }

  .hero-visual {
    min-height: 600px;
    margin-top: 0.8rem;
    justify-items: stretch;
  }

  .hero-photo-collage {
    width: 100%;
    min-height: 420px;
    max-width: calc(100vw - 2.4rem);
    margin: 0 auto;
  }

  .photo-panel {
    border-radius: 28px;
  }

  .photo-panel-tall {
    top: 0;
    right: 0.2rem;
    width: min(72%, 255px);
  }

  .photo-panel-wide {
    left: 0;
    bottom: 4.5rem;
    width: min(56%, 205px);
  }

  .photo-panel-accent {
    right: 0.3rem;
    bottom: 0.5rem;
    width: min(42%, 145px);
  }

  .orb-one {
    top: 1.2rem;
    left: 0.1rem;
    width: 110px;
    height: 110px;
  }

  .orb-two {
    right: -0.2rem;
    bottom: 7.2rem;
    width: 86px;
    height: 86px;
  }

  .heart-one {
    top: 3.6rem;
    right: 3.4rem;
  }

  .heart-two {
    left: 1.2rem;
    bottom: 1.6rem;
  }

  .hero-install-card {
    width: 100%;
    max-width: none;
    margin-top: 0.4rem;
    padding: 1rem 1rem 1.15rem;
  }

  .hero-install-button,
  .download-card .button-large {
    width: 100%;
    min-width: 0;
  }

  .hero-overlay-cta {
    top: 0.75rem;
    left: 0.55rem;
    right: 0.55rem;
    width: auto;
    min-height: 58px;
    padding: 0 1.2rem;
    font-size: 0.98rem;
  }

  .hero-install-card strong {
    font-size: 1.34rem;
  }

  .hero-branding {
    gap: 0.7rem;
  }

  .brand-kicker {
    font-size: 0.88rem;
    letter-spacing: 0.28em;
  }

  .stat-card,
  .feature-card,
  .screen-card,
  .trust-card {
    padding: 1.2rem;
  }

  .site-footer {
    margin-bottom: 1rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide,
  .float-card,
  .reveal,
  .button,
  .brand-kicker,
  .brand-line,
  .photo-panel-tall,
  .photo-panel-wide,
  .photo-panel-accent,
  .hero-heart,
  .hero-orb {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
