@layer page {
/* || Hero */
#hero {
  padding: 1.5rem 2rem 4rem;
}

.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-7);
  align-items: start;
}

.hero-left {
  padding-top: 14rem;
}

.hero-dict {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 2rem;
  max-width: 480px;
}

.dict-word {
  display: block;
  font-weight: 700;
}

.dict-ipa {
  display: block;
  font-size: 0.45em;
  font-weight: 400;
  color: var(--dim);
  letter-spacing: 0.04em;
  margin-top: 0.15em;
  margin-bottom: 0.4em;
  font-family: var(--font-sans);
}

.dict-def-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3em;
  align-items: baseline;
}

.dict-pos {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--accent);
}

.dict-def {
  font-size: 0.55em;
  font-weight: 400;
  color: var(--faint);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.dict-syn {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3em;
  align-items: baseline;
  margin-top: 0.25em;
}

.dict-syn-label {
  font-size: 0.35em;
  font-weight: 600;
  color: var(--accent);
}

.dict-syn-body {
  font-size: 0.35em;
  font-weight: 400;
  color: var(--faint);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: visible;
}

.hero-shot {
  position: relative;
  overflow: visible;
  margin-top: 0.5rem;
}

.hero-shot img,
.hero-shot video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
  transform: scale(1.55) translateX(-15px);
  transform-origin: top center;
}

@media (max-width: 1024px) {
  .hero-shot img,
  .hero-shot video {
    transform: scale(1.15) translateX(-5px);
  }
  .hero-right {
    overflow: hidden;
  }
  .hero-shot {
    overflow: hidden;
  }
  #hero {
    padding: 3rem 1.5rem 3rem;
  }
  .hero-left {
    padding-top: 3rem;
  }
  .hero-grid {
    gap: 2rem;
  }
  .hero-reviews {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-left {
    padding-top: 0;
  }
  .hero-dict {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    max-width: none;
  }
  .hero-reviews {
    margin-top: 2rem;
  }
  .hero-right {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-shot img,
  .hero-shot video {
    transform: scale(1.02) translateX(0);
  }
  #hero {
    padding: 2rem 2rem 2rem;
  }
  .hero-grid {
    gap: 1.25rem;
  }
  .hero-dict {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 1.25rem;
  }
  .hero-ctas {
    gap: 0.5rem;
  }
  .hero-reviews {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  .feature-link strong {
    font-size: 1.05rem;
  }
}

.hero-reviews {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 0;
}

@media (min-width: 1025px) {
  .hero-reviews {
    margin-top: 10rem;
  }
}

.reviews-label {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-reviews .review-card {
  border-left: 2px solid var(--accent);
  padding-left: 0.875rem;
}

.hero-reviews .review-stars {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
}

.hero-reviews .review-text {
  font-size: 0.92rem;
  color: var(--faint);
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.hero-reviews .review-author {
  font-size: var(--fs-md);
  color: var(--dim);
  font-weight: 500;
}

.verified-badge {
  font-size: var(--fs-md);
  color: var(--accent);
  margin-top: 0.25rem;
  opacity: 0.85;
}

.verified-badge a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.25s ease, color 0.25s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0;
}

.verified-badge a:hover {
  text-decoration-color: inherit;
  color: var(--accent);
}

.review-source {
  font-size: var(--fs-sm);
  color: var(--accent);
  margin-top: 0.25rem;
}

.review-source a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.25s ease, color 0.25s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0;
}

.review-source a:hover {
  text-decoration-color: var(--accent);
  color: var(--accent);
}

.review-source--email {
  color: var(--dim);
}

.review-source--email a {
  color: var(--dim);
  transition: color 0.25s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0;
}

.review-source--email a:hover {
  text-decoration-color: var(--accent);
  color: var(--accent);
}

.reviews-see-all {
  font-size: var(--fs-md);
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.25rem;
  align-self: flex-start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0;
}

.reviews-see-all .link-text {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.25s ease, color 0.25s ease;
}

.reviews-see-all:hover .link-text {
  text-decoration-color: var(--accent);
  color: var(--accent);
}

.reviews-see-all .features-cta-arrow {
  text-decoration: none;
}

/* || Reviews */
#reviews { padding: 2.5rem 0 3rem; }

#reviews.reviews-right { padding: 0; }

.reviews-scroll {
  position: relative;
  padding: 0.5rem 0;
  min-height: 180px;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-scroll::-webkit-scrollbar {
  display: none;
}

.reviews-scroll::after {
  content: '';
  flex: 0 0 1px;
}

.reviews-scroll.is-carousel {
  overflow: hidden;
  overscroll-behavior-x: auto;
  cursor: grab;
}

.reviews-scroll.is-carousel:active {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  will-change: transform;
}

.reviews-track.is-animating {
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reviews-scroll .review-card {
  flex: 0 0 calc(33.333% - 1.25rem);
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  border-radius: 0;
  padding: 1rem 0 1rem 1.25rem;
}

.reviews-scroll .review-stars {
  color: var(--accent);
  font-size: var(--fs-md);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.reviews-scroll .review-text {
  font-size: var(--fs-base);
  color: var(--faint);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.reviews-scroll .review-author {
  font-size: var(--fs-sm);
  color: var(--dim);
  font-weight: 500;
}

.reviews-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  justify-content: flex-end;
}

.reviews-nav-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.55rem 0.9rem;
  border-radius: 4px;
  font-size: var(--fs-xs);
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.1s ease, border-color 0.15s ease, background-color 0.15s ease;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.reviews-nav-btn:hover { border-color: var(--accent); }

.reviews-nav-btn:active { transform: scale(0.95); }

.reviews-nav-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .hero-shot { overflow: hidden; }
  .reviews-scroll .review-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 640px) {
  .reviews-scroll .review-card { flex: 0 0 calc(85% - 0.75rem); }
  #pricing { padding: var(--space-8) var(--space-5); }
}

/* || Pricing */
#pricing {
  padding: var(--space-9) var(--space-6);
  background: var(--elevated);
}

.pricing-layout {
  display: grid;
  grid-template-columns: auto auto;
  gap: var(--space-7);
  justify-content: center;
  margin: 0 auto 3rem;
  align-items: start;
}

.pricing-main {
  text-align: center;
}

.pricing-main .hero-ctas {
  justify-content: center;
}

.pricing-main .price-big {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-facts ul {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 2.2rem;
}

.pricing-facts li {
  font-size: var(--fs-xl);
  color: var(--muted);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-facts li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pricing-facts li strong {
  color: var(--text);
  font-weight: 500;
}

.price-big {
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-align: center;
}

.price-faq {
  max-width: 480px;
  margin: 2rem auto 0;
}

@media (max-width: 768px) {
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pricing-main .price-big {
    text-align: center;
  }
}

/* || About */
.about-wide {
  font-size: var(--fs-2xl);
  line-height: 1.7;
  color: var(--muted);
  max-width: none;
}

.about-wide p {
  margin-bottom: 1rem;
}

.about-wide strong {
  color: var(--text);
  font-weight: 600;
}

.about-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.about-signature {
  max-width: 320px;
}

.about-email {
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
}

.about-email a {
  color: var(--faint);
  text-decoration: none;
  transition: color 0.25s ease;
}

.about-email a:hover {
  color: var(--accent);
}

.about-name {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.about-reviews-pair {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-7);
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  align-items: start;
}

.about-left {
  grid-column: 1;
}

.reviews-right {
  grid-column: 2;
  max-width: 380px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.reviews-right .reviews-scroll .review-card {
  flex: 0 0 calc(100% - 0.75rem);
}

.reviews-group-label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: block;
}

.reviews-group-label + .reviews-group-label {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .about-reviews-pair {
    grid-template-columns: 1fr;
    display: block;
  }
  .about-left,
  .reviews-right {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
    width: 100%;
    padding-top: 0;
  }
  .reviews-right {
    margin-top: 2rem;
  }
  .reviews-right .reviews-scroll .review-card {
    flex: 0 0 calc(80% - 0.75rem);
  }
}

/* || Labels */
.section-kicker {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
  display: block;
}

/* || How */
#how {
  --how-offset: clamp(1rem, 12vw, 18rem);
  padding: 0.5rem var(--space-6) 0.5rem;
  contain: layout style;
}

.how-stagger {
  max-width: 52ch;
  margin-inline-start: var(--how-offset);
  padding-inline: var(--space-6);
  min-inline-size: 0;
}

.how-stagger > p {
  font-size: clamp(0.95rem, 0.3vw + 0.88rem, 1.05rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 60ch;
  margin-block-end: 0.75em;
}

.how-stagger > p:last-child {
  margin-block-end: 0;
}

.how-stagger > p:nth-of-type(even) {
  padding-inline-start: 2em;
}


.export-figure {
  margin-block-start: -4rem;
  margin-block-end: 2.5rem;
  margin-inline-start: calc(clamp(12rem, 44vw, 66rem) - 4px);
  padding: 0;
  max-inline-size: 720px;
  aspect-ratio: 1372 / 280;
  inline-size: 100%;
  transform: translateZ(0);
  will-change: transform;
}

.export-figure img {
  display: block;
  inline-size: 100%;
  max-inline-size: 720px;
  block-size: auto;
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 0.5rem;
  background: var(--bg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

/* @media: ≤1024px */
@media (max-width: 1024px) {
  #how {
    --how-offset: clamp(1.5rem, 8vw, 10rem);
  }

  .export-figure {
    margin-inline-start: clamp(4rem, 22vw, 28rem);
    max-inline-size: 600px;
  }

  .export-figure img {
    max-inline-size: 600px;
  }
}

/* @media: ≤768px */
@media (max-width: 768px) {
  #how {
    --how-offset: 1.5rem;
    padding-inline: var(--space-4);
  }

  .how-stagger {
    margin-inline-start: var(--how-offset);
    padding-inline: 0;
  }

  .how-stagger > p:nth-of-type(even) {
    padding-inline-start: 1.5em;
  }

  .export-figure {
    margin-block-start: 1.5rem;
    margin-inline-start: 1.5rem;
    margin-block-end: 2rem;
    max-inline-size: calc(100% - 3rem);
    aspect-ratio: 1372 / 280;
  }

  .export-figure img {
    max-inline-size: 100%;
  }
}

/* @media: ≤640px */
@media (max-width: 640px) {
  #how {
    padding-inline: 1rem;
  }

  .how-stagger {
    margin-inline-start: 1rem;
  }

  .how-stagger > p {
    font-size: 0.95rem;
  }

  .how-stagger > p:nth-of-type(even) {
    padding-inline-start: 1em;
  }

  .export-figure {
    margin-inline-start: 0.5rem;
    margin-block-start: 1rem;
    margin-block-end: 1.5rem;
    max-inline-size: calc(100% - 1.5rem);
  }

  .export-figure img {
    padding: 0.25rem;
    border-radius: 4px;
    box-shadow: none;
  }
}

/* @media: ≥1440px */
@media (min-width: 1440px) {
  #how {
    --how-offset: clamp(2rem, 14vw, 20rem);
  }

  .how-stagger {
    max-inline-size: 56ch;
  }

  .export-figure {
    margin-inline-start: calc(clamp(14rem, 48vw, 68rem) - 4px);
  }
}

/* @media: ≥1920px */
@media (min-width: 1920px) {
  .export-figure {
    margin-inline-start: calc(clamp(18rem, 52vw, 72rem) - 4px);
  }
}

/* @media: prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .export-figure {
    transform: none;
    will-change: auto;
  }
}

/* @media: prefers-contrast */
@media (prefers-contrast: more) {
  .export-figure img {
    border-width: 2px;
    border-color: CanvasText;
  }
}

/* || Feature grid */
#features {
  padding: 1rem var(--space-6) var(--space-8);
}

.features-overlap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 1rem;
}

.features-shot {
  grid-column: 1 / span 8;
  grid-row: 1 / span 4;
  z-index: 1;
  position: relative;
}

.feature-videos {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

.feature-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.feature-poster.is-active {
  opacity: 1;
}

.no-js .feature-poster:first-of-type {
  opacity: 1;
}

.feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  will-change: opacity;
  -webkit-transform: translateZ(0);
}

.feature-video.is-active {
  opacity: 1;
}

.no-js .feature-video:first-of-type {
  opacity: 1;
}

video::-webkit-media-controls-timeline,
video::-webkit-media-controls-timeline-container,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display,
video::-webkit-media-controls-volume-control,
video::-webkit-media-controls-volume-slider {
  display: none !important;
}

.feature-item.is-active .feature-link strong {
  color: var(--accent);
}

.no-js .feature-item:first-of-type .feature-link strong {
  color: var(--accent);
}


.features-text-card {
  grid-column: 9 / span 4;
  grid-row: 2 / span 3;
  z-index: 2;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2rem 1rem 2rem;
  align-self: center;
  text-align: left;
}

.features-text-card .section-kicker {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.feature-item {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  text-align: left;
}

.feature-item:first-child {
  border-top: none;
  padding-top: 0;
}

.feature-item:last-child {
  border-bottom: 1px solid var(--border);
}

.feature-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
  text-align: left;
}

.feature-link strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-align: left;
}

.feature-link .feature-line {
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: 1.5;
  text-align: left;
}

.feature-link:hover strong {
  color: var(--accent);
}

.features-cta {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  #features {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .features-overlap {
    display: block;
  }
  .features-shot {
    position: sticky;
    top: 52px;
    z-index: 5;
    background: var(--bg);
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 0;
    overflow: hidden;
  }
  .feature-videos {
    aspect-ratio: 16 / 10;
    height: auto;
  }
  .features-text-card {
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  .feature-item {
    padding: 1rem 0;
  }
  .feature-item:first-child {
    padding-top: 0;
  }
}

#hero-reviews { min-height: 220px; }

.feature-videos { aspect-ratio: 16 / 10; }


/* || Benchmark */
#benchmark {
  padding: var(--space-6) var(--space-6);
  background: var(--elevated);
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  #benchmark {
    padding: var(--space-6) 0.75rem;
  }
}

#benchmark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.benchmark-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.benchmark-headline-xl {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .benchmark-headline-xl {
    white-space: normal;
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
}

.headline-underline {
  position: relative;
  display: inline-block;
}

.headline-underline::after {
  content: '';
  position: absolute;
  left: 0.06em;
  right: 0;
  bottom: 0.08em;
  height: max(2px, 0.05em);
  background-color: var(--accent);
  border-radius: 0.05em;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 1s;
}

.headline-underline.is-drawn::after {
  transform: scaleX(1);
}

.benchmark-lead {
  font-size: var(--fs-2xl);
  color: var(--muted);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: clamp(0px, 5vw, 3rem);
  text-align: left;
}

@media (max-width: 768px) {
  .benchmark-lead {
    margin-right: auto;
    text-align: center;
  }
}

.receipt--benchmark .receipt-col {
  grid-row: span 7;
}

.benchmark-footnotes {
  margin-top: var(--space-5);
  font-size: var(--fs-xs);
  color: #555a64;
  line-height: 1.35;
}

.benchmark-footnotes p {
  margin-bottom: var(--space-1);
}

.benchmark-footnotes p:last-child {
  margin-bottom: 0;
}

.benchmark-footnotes a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.25s ease, color 0.25s ease;
}

.benchmark-footnotes a:hover {
  text-decoration-color: inherit;
  color: var(--accent);
}

.benchmark-footnotes sup {
  color: var(--accent);
  font-weight: 500;
  margin-right: 0.15em;
}

@media (prefers-reduced-motion: no-preference) {
  .feature-video,
  .feature-item {
    will-change: opacity;
  }
}
}
