:root {
  --canvas: #f8f7f5;
  --canvas-soft: #f3f0fb;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-border: rgba(139, 124, 246, 0.14);
  --ink: #241d2f;
  --ink-soft: #6a6178;
  --ink-inverse: #fffdfd;
  --night: #17121f;
  --night-soft: #21182e;
  --violet: #8b7cf6;
  --violet-deep: #6858ea;
  --lavender: #b9a8ff;
  --peach: #f6b38c;
  --soft-pink: #f8d6c4;
  --mint: #dff6ee;
  --line: rgba(139, 124, 246, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --shadow-soft: 0 24px 70px rgba(79, 53, 122, 0.12);
  --shadow-strong: 0 32px 120px rgba(22, 12, 38, 0.24);
  --gradient-brand: linear-gradient(135deg, var(--violet-deep) 0%, var(--lavender) 46%, var(--peach) 100%);
  --gradient-soft:
    radial-gradient(circle at 12% 18%, rgba(185, 168, 255, 0.32), transparent 24%),
    radial-gradient(circle at 88% 24%, rgba(246, 179, 140, 0.28), transparent 22%),
    radial-gradient(circle at 64% 76%, rgba(139, 124, 246, 0.12), transparent 18%);
  --radius-pill: 999px;
  --radius-card: 2rem;
  --radius-card-lg: 2.75rem;
  --max-width: 1240px;
  --layout-pad: 2rem;
  --section-pad: clamp(5.5rem, 10vw, 8.5rem);
  --label-font: "IBM Plex Mono", monospace;
  --display-font: "Space Grotesk", sans-serif;
  --body-font: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    var(--gradient-soft),
    var(--canvas);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-shell {
  overflow: clip;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(22px);
  background: rgba(248, 247, 245, 0.58);
  border-bottom: 1px solid transparent;
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.topbar[data-scrolled="true"] {
  background: rgba(248, 247, 245, 0.82);
  border-color: rgba(139, 124, 246, 0.08);
  box-shadow: 0 10px 30px rgba(90, 70, 130, 0.08);
}

.topbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 5.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand__logo {
  width: clamp(5.5rem, 7vw, 7.25rem);
  height: auto;
  object-fit: contain;
  margin-top: 10px;
  margin-bottom: 10px;
}

.brand__copy {
  display: grid;
  gap: 0.15rem;
}

.brand__copy strong {
  font-family: var(--display-font);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand__copy span {
  font-family: var(--label-font);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.navigation-shell {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "nav actions"
    "badge badge";
  align-items: center;
  justify-content: end;
  column-gap: 1.25rem;
  row-gap: 0.55rem;
}

.menu-badge {
  grid-area: badge;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  justify-self: end;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 137, 18, 0.24);
  background: linear-gradient(135deg, #ffd65a, #ffec9f);
  color: #5c4300;
  font-family: var(--label-font);
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a,
.footer__nav a {
  position: relative;
  font-family: var(--label-font);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  transition: color 220ms ease, transform 220ms ease;
}

.nav a::after,
.footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav a:hover,
.footer__nav a:hover {
  color: var(--ink);
}

.nav a:hover::after,
.footer__nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(139, 124, 246, 0.14);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--label-font);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: var(--ink-inverse);
  background: var(--gradient-brand);
  box-shadow: 0 18px 36px rgba(123, 96, 202, 0.28);
}

.btn--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(139, 124, 246, 0.12);
}

.btn--outline {
  color: var(--ink-inverse);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.btn--contrast {
  align-self: flex-start;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.btn--wide {
  width: 100%;
}

.hero {
  position: relative;
  min-height: clamp(38rem, 90svh, 52rem);
  display: flex;
  align-items: stretch;
  isolation: isolate;
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(20, 16, 28, 0.82) 0%, rgba(20, 16, 28, 0.52) 36%, rgba(20, 16, 28, 0.18) 66%, rgba(20, 16, 28, 0.1) 100%),
    linear-gradient(180deg, rgba(248, 214, 196, 0.08) 0%, rgba(20, 16, 28, 0.16) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(7rem, 12vw, 9.5rem) clamp(3rem, 8vw, 5rem);
}

.hero__copy {
  color: var(--ink-inverse);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--label-font);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow--dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.12);
}

.eyebrow__dot {
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lavender), var(--peach));
  box-shadow: 0 0 18px rgba(185, 168, 255, 0.8);
}

.hero h1,
.section-title h2,
.story-panel h3,
.compare-card h3,
.feature-card h3,
.step-card h3,
.context-card h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: -0.05em;
}

.hero h1 {
  margin-top: 1.35rem;
  max-width: 11.8ch;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.9;
}

.hero__summary {
  margin: 1.4rem 0 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--label-font);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero__panel {
  position: relative;
  min-height: 38rem;
  padding: 1.4rem;
  border-radius: var(--radius-card-lg);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.signal-card {
  position: absolute;
  z-index: 3;
  padding: 1rem 1rem 1.1rem;
  border-radius: 1.6rem;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
}

.signal-card--primary {
  top: 1.2rem;
  left: 1.2rem;
  max-width: 15rem;
  color: var(--ink-inverse);
  background: linear-gradient(160deg, rgba(123, 96, 202, 0.9), rgba(91, 72, 175, 0.84));
  box-shadow: 0 18px 40px rgba(72, 46, 128, 0.28);
}

.signal-card--neutral {
  right: 1.2rem;
  top: 8rem;
  min-width: 13.8rem;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(139, 124, 246, 0.14);
  box-shadow: 0 18px 40px rgba(59, 39, 100, 0.1);
}

.signal-card__label,
.signal-card__meta,
.story-panel__badge,
.compare-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--label-font);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.88;
}

.signal-card strong {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--display-font);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.signal-card p {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.signal-card__rows {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.signal-card__rows span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.signal-card__rows i,
.story-list span::before {
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--peach));
  content: "";
}

.hero__device {
  position: absolute;
  right: 2rem;
  bottom: 1.2rem;
  width: min(18rem, 78%);
  aspect-ratio: 0.8;
}

.device-glow {
  position: absolute;
  inset: auto auto 5% -10%;
  width: 125%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(185, 168, 255, 0.4) 38%, rgba(246, 179, 140, 0.24) 62%, rgba(255, 255, 255, 0) 74%);
  filter: blur(4px);
  opacity: 0.8;
}

.device-glow--story {
  inset: auto auto 0 2%;
  width: 96%;
  opacity: 0.68;
}

.product-shot {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(28, 16, 48, 0.24));
}

.product-shot--hero {
  right: -6%;
  bottom: 1%;
  transform: rotate(8deg);
}

.product-shot--story {
  right: 0%;
  top: clamp(-12.8rem, -17vw, -9.5rem);
  width: 100%;
  /* width: min(15rem, 100%); */
  /* transform: rotate(10deg); */
}

.device-frame {
  position: absolute;
  inset: 0;
  border-radius: 46% 46% 42% 42% / 38% 38% 50% 50%;
  background: linear-gradient(145deg, #676571 0%, #44414d 100%);
  box-shadow: 0 34px 70px rgba(32, 21, 52, 0.28);
  transform: rotate(8deg);
}

.device-frame::before {
  content: "AURA";
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display-font);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: rgba(20, 18, 24, 0.52);
}

.device-core {
  position: absolute;
  inset: 18% 18% 25% 18%;
  border-radius: 45% 45% 48% 48% / 38% 38% 54% 54%;
  background: var(--gradient-brand);
  box-shadow: 0 0 44px rgba(185, 168, 255, 0.55);
}

.device-core::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.84);
}

.device-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 34%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50% 45% 52% 47% / 48% 48% 52% 52%;
  background: linear-gradient(145deg, #7c7a85, #57545f);
  box-shadow: inset 0 8px 14px rgba(255, 255, 255, 0.12), inset 0 -10px 18px rgba(0, 0, 0, 0.16);
}

.device-ring {
  position: absolute;
  top: -8%;
  left: 56%;
  width: 26%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0.9rem solid #6d6971;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  transform: translateX(-50%) rotate(-10deg);
}

.device-side {
  position: absolute;
  right: -2%;
  border-radius: 999px;
  background: linear-gradient(180deg, #c8c6ce, #7a7682);
  box-shadow: 0 4px 10px rgba(31, 24, 44, 0.2);
}

.device-side--lg {
  top: 42%;
  width: 1rem;
  height: 2.4rem;
}

.device-side--sm {
  top: 52%;
  width: 1rem;
  height: 1.8rem;
}

.bubble {
  position: absolute;
  display: grid;
  gap: 0.3rem;
  min-width: 10rem;
  padding: 0.8rem 0.95rem;
  border-radius: 1.6rem;
  color: var(--ink-inverse);
  box-shadow: 0 18px 36px rgba(28, 16, 48, 0.22);
  animation: bubbleFloat 6s ease-in-out infinite;
}

.bubble__title {
  font-family: var(--label-font);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.86;
}

.bubble strong {
  font-family: var(--display-font);
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.bubble--violet {
  background: linear-gradient(135deg, rgba(139, 124, 246, 0.95), rgba(104, 88, 234, 0.88));
}

.bubble--night {
  background: rgba(26, 22, 34, 0.92);
}

.bubble--peach {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(248, 214, 196, 0.96), rgba(246, 179, 140, 0.92));
}

.bubble--one {
  top: 11.8rem;
  left: 1.6rem;
}

.bubble--two {
  right: 1rem;
  bottom: 9.2rem;
  animation-delay: 1.2s;
}

.bubble--three {
  left: 3rem;
  bottom: 3rem;
  animation-delay: 2.4s;
}

.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(139, 124, 246, 0.08);
  border-bottom: 1px solid rgba(139, 124, 246, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 1rem 0;
  animation: tickerMove 26s linear infinite;
}

.ticker__track span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--label-font);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
  white-space: nowrap;
}

.ticker__track span::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--peach));
}

.section {
  position: relative;
  padding-block: var(--section-pad);
}

.section--light {
  background: transparent;
}

.section--story {
  background:
    radial-gradient(circle at 12% 12%, rgba(185, 168, 255, 0.18), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(246, 179, 140, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.22));
}

.section--contrast {
  color: var(--ink-inverse);
  background:
    radial-gradient(circle at 10% 12%, rgba(185, 168, 255, 0.16), transparent 18%),
    radial-gradient(circle at 84% 78%, rgba(246, 179, 140, 0.18), transparent 20%),
    var(--night);
}

.section--news-watch {
  color: var(--ink-inverse);
  background:
    radial-gradient(circle at 12% 16%, rgba(248, 214, 196, 0.18), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(185, 168, 255, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(16, 12, 21, 0.98), rgba(24, 16, 30, 1));
}

.section--faq {
  color: var(--ink-inverse);
  background:
    linear-gradient(180deg, rgba(23, 18, 31, 0.98), rgba(18, 14, 24, 1)),
    var(--night);
}

.section--steps {
  background: rgba(255, 255, 255, 0.44);
}

.section--cta {
  padding-top: 0;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.section-title {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.section-title--left {
  margin-inline: 0;
  text-align: left;
}

.section-title h2 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.94;
}

.section-title p:last-child {
  margin: 1rem auto 0;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.section--contrast .section-title p:last-child,
.section--faq .section-title p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.section-title--left p:last-child {
  margin-inline: 0;
}

.feature-grid,
.context-grid,
.steps-grid,
.compare-grid,
.impact-band {
  margin-top: clamp(2rem, 5vw, 3.2rem);
}

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

.feature-card,
.context-card,
.step-card {
  min-height: 17rem;
  padding: 1.6rem;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.feature-card:hover,
.context-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 124, 246, 0.22);
  box-shadow: 0 28px 72px rgba(90, 68, 144, 0.14);
}

.feature-card__icon,
.context-card__icon,
.step-card__number,
.story-tab__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139, 124, 246, 0.16), rgba(246, 179, 140, 0.22));
  font-family: var(--label-font);
  font-size: 0.74rem;
  color: var(--ink);
  text-transform: uppercase;
}

.feature-card h3,
.context-card h3,
.step-card h3 {
  margin-top: 1rem;
  font-size: 1.55rem;
  line-height: 1;
}

.feature-card p,
.context-card p,
.step-card p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
}

.story-layout {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: start;
}

.story-tabs {
  display: grid;
  gap: 0.9rem;
}

.story-tabs,
.feature-grid,
.context-grid,
.steps-grid,
.compare-grid,
.impact-band,
.news-watch__grid {
  scrollbar-width: none;
}

.story-tabs::-webkit-scrollbar,
.feature-grid::-webkit-scrollbar,
.context-grid::-webkit-scrollbar,
.steps-grid::-webkit-scrollbar,
.compare-grid::-webkit-scrollbar,
.impact-band::-webkit-scrollbar,
.news-watch__grid::-webkit-scrollbar {
  display: none;
}

.story-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1rem 1rem 1.05rem;
  border: 1px solid rgba(139, 124, 246, 0.14);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.story-tab strong {
  display: block;
  font-family: var(--display-font);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.story-tab small {
  display: block;
  margin-top: 0.28rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.story-tab.is-active {
  transform: translateX(0.45rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 214, 196, 0.56));
  border-color: rgba(139, 124, 246, 0.24);
}

.story-preview {
  position: relative;
  min-height: 30rem;
  padding: 1.2rem;
  border-radius: var(--radius-card-lg);
  background:
    radial-gradient(circle at 14% 18%, rgba(185, 168, 255, 0.26), transparent 18%),
    radial-gradient(circle at 88% 82%, rgba(246, 179, 140, 0.24), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(139, 124, 246, 0.14);
  box-shadow: var(--shadow-soft);
}

.story-panel {
  display: none;
  gap: 1rem;
}

.story-panel.is-active {
  display: grid;
}

.story-panel h3 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 0.98;
}

.story-panel p {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
}

.story-panel__device {
  position: relative;
  min-height: 18rem;
  margin-top: 0.5rem;
  isolation: isolate;
}

.story-panel[data-story-panel="touch"] .story-panel__device::before,
.story-panel[data-story-panel="touch"] .story-panel__device::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.story-panel[data-story-panel="touch"] .story-panel__device::before {
  top: -0.45rem;
  right: 6%;
  width: min(24rem, 82%);
  height: 5rem;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(248, 247, 245, 0.98) 0%,
    rgba(248, 247, 245, 0.72) 56%,
    rgba(248, 247, 245, 0) 100%
  );
  filter: blur(100px);
}

.story-panel[data-story-panel="touch"] .story-panel__device::after {
  top: 0.3rem;
  right: -0.8rem;
  width: 5rem;
  height: calc(100% - 0.3rem);
  border-radius: 999px;
  background: linear-gradient(
    270deg,
    rgba(248, 247, 245, 0.98) 0%,
    rgba(248, 247, 245, 0.72) 56%,
    rgba(248, 247, 245, 0) 100%
  );
  filter: blur(38px);
}

.story-note,
.story-map__card,
.story-stack div {
  max-width: 16rem;
  padding: 0.9rem 1rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(139, 124, 246, 0.12);
  box-shadow: 0 18px 42px rgba(90, 68, 144, 0.12);
}

.story-note--violet {
  position: absolute;
  left: 0;
  bottom: 1rem;
  color: var(--ink-inverse);
  background: linear-gradient(135deg, rgba(139, 124, 246, 0.96), rgba(104, 88, 234, 0.9));
  border-color: transparent;
}

.story-map {
  position: relative;
  min-height: 16rem;
  margin-top: 1rem;
  border-radius: 2rem;
  background:
    linear-gradient(90deg, rgba(139, 124, 246, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(139, 124, 246, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58));
  background-size: 4.2rem 4.2rem, 4.2rem 4.2rem, auto;
  overflow: hidden;
}

.story-map__pulse {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--violet), var(--peach));
  box-shadow: 0 0 0 0 rgba(139, 124, 246, 0.36);
  animation: mapPulse 2.8s ease-out infinite;
}

.story-map__card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.story-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.story-list span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 124, 246, 0.12);
}

.story-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.story-stack strong,
.story-map__card strong {
  display: block;
  font-family: var(--display-font);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.story-stack small,
.story-map__card small {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink-soft);
}

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

.compare-card {
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  padding: 1.7rem;
  border-radius: var(--radius-card-lg);
}

.compare-card h3 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.compare-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1rem;
}

.compare-card li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.32rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--peach));
}

.compare-card--before {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.compare-card--after {
  background:
    radial-gradient(circle at 16% 18%, rgba(185, 168, 255, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--night-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-inverse);
  box-shadow: var(--shadow-strong);
}

.compare-card--after li::before {
  background: linear-gradient(135deg, var(--soft-pink), var(--peach));
}

.compare-card--after .btn {
  margin-top: auto;
}

.news-watch__header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.75fr);
  gap: 1.2rem;
  align-items: end;
}

.news-watch__copy {
  max-width: 46rem;
}

.news-watch__copy h2 {
  margin: 1rem 0 0;
  max-width: 13ch;
  font-family: var(--display-font);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
}

.news-watch__copy p:last-child {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.74);
}

.news-watch__statement {
  display: grid;
  gap: 0.85rem;
  padding: 1.45rem;
  border-radius: 1.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.news-watch__statement strong {
  font-family: var(--display-font);
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.news-watch__statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.news-watch__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.news-watch__sources {
  display: grid;
  gap: 0.7rem;
}

.news-watch__label,
.news-watch__updated {
  font-family: var(--label-font);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.66);
}

.news-watch__updated {
  margin: 0;
  text-align: right;
}

.news-watch__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.news-watch__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--label-font);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-watch__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.news-card {
  position: relative;
  display: grid;
  gap: 0.9rem;
  min-height: 20rem;
  padding: 1.45rem;
  border-radius: calc(var(--radius-card) + 0.2rem);
  background:
    radial-gradient(circle at 88% 14%, rgba(246, 179, 140, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.news-card--with-image {
  align-content: start;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(90deg, rgba(248, 214, 196, 0.9), rgba(185, 168, 255, 0.7), rgba(255, 255, 255, 0));
}

.news-card--lead {
  grid-column: span 2;
  min-height: 22rem;
}

.news-card--lead h3 {
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 3rem);
}

.news-card--empty {
  min-height: auto;
}

.news-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 1.45rem;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.08);
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(15, 10, 20, 0), rgba(15, 10, 20, 0.4));
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.news-card__source,
.news-card__date {
  font-family: var(--label-font);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-card__source {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--ink-inverse);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-card__date {
  color: rgba(255, 255, 255, 0.58);
}

.news-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.75rem;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.news-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.news-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-top: 0.85rem;
  font-family: var(--label-font);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft-pink);
}

.news-card__link::after {
  content: "↗";
  font-size: 0.85rem;
}

.news-watch__footnote {
  margin: 1.15rem 0 0;
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

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

.impact-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(139, 124, 246, 0.12);
  box-shadow: var(--shadow-soft);
}

.impact-band article {
  min-height: 9rem;
  padding: 1.1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(139, 124, 246, 0.08);
}

.impact-band strong {
  display: block;
  font-family: var(--display-font);
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.impact-band span {
  display: block;
  margin-top: 0.55rem;
  color: var(--ink-soft);
}

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

.step-card {
  min-height: 15rem;
}

.section--faq .section-title,
.faq-list {
  max-width: 54rem;
}

.faq-list {
  margin-top: 2.4rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 0;
  border: 0;
  background: transparent;
  color: var(--ink-inverse);
  text-align: left;
}

.faq-trigger span {
  font-size: 1.05rem;
  transition: transform 220ms ease;
}

.faq-trigger:hover span {
  transform: translateX(0.45rem);
}

.faq-trigger i {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.faq-trigger i::before,
.faq-trigger i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.faq-trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-trigger[aria-expanded="true"] i::after {
  opacity: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-content p {
  margin: 0;
  padding: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
}

.faq-content.is-open {
  max-height: 14rem;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-radius: calc(var(--radius-card-lg) + 0.3rem);
  background:
    radial-gradient(circle at 8% 26%, rgba(185, 168, 255, 0.28), transparent 18%),
    radial-gradient(circle at 88% 72%, rgba(246, 179, 140, 0.26), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76));
  border: 1px solid rgba(139, 124, 246, 0.12);
  box-shadow: var(--shadow-soft);
}

.cta-card__copy h2 {
  margin: 1rem 0 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.95;
  font-family: var(--display-font);
  letter-spacing: -0.05em;
}

.cta-card__copy p:last-child {
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.lead-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem;
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(139, 124, 246, 0.1);
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
}

.lead-form span {
  font-family: var(--label-font);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.lead-form input {
  width: 100%;
  min-height: 3.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(139, 124, 246, 0.14);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.lead-form input:focus {
  border-color: rgba(139, 124, 246, 0.34);
  box-shadow: 0 0 0 4px rgba(139, 124, 246, 0.1);
}

.footer {
  padding: 1.6rem 0 2.4rem;
  color: var(--ink-soft);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(139, 124, 246, 0.12);
}

.footer__inner strong {
  display: block;
  color: var(--ink);
}

.footer__inner p {
  margin: 0.3rem 0 0;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-credits {
  padding: 0 0 1.6rem;
}

.footer-credits__inner {
  display: flex;
  justify-content: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(139, 124, 246, 0.08);
}

.footer-credits__link {
  font-family: var(--label-font);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(56, 45, 74, 0.7);
  transition: color 220ms ease, opacity 220ms ease;
}

.footer-credits__link:hover {
  color: var(--violet-deep);
}

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

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.js .reveal--scale {
  transform: translate3d(0, 1.4rem, 0) scale(0.96);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.7rem);
  }
}

@keyframes mapPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 124, 246, 0.36);
  }
  100% {
    box-shadow: 0 0 0 1.6rem rgba(139, 124, 246, 0);
  }
}

@media (max-width: 1152px) {
  .hero__grid {
    padding-top: 7.5rem;
  }

  .story-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  }

  .news-watch__header {
    grid-template-columns: 1fr;
  }

  .news-watch__copy h2 {
    max-width: 100%;
  }

  .hero__panel {
    min-height: 34rem;
  }

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

@media (max-width: 920px) {
  :root {
    --layout-pad: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .navigation-shell {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.7rem);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "actions"
      "badge";
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(139, 124, 246, 0.12);
    box-shadow: 0 30px 80px rgba(25, 14, 40, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.8rem);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  body.menu-open .navigation-shell {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    gap: 0.85rem;
  }

  .menu-badge {
    justify-self: stretch;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .nav a {
    color: var(--ink);
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-tabs,
  .compare-grid,
  .impact-band,
  .steps-grid,
  .feature-grid,
  .context-grid,
  .news-watch__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0.1rem;
    padding-bottom: 0.35rem;
  }

  .story-tabs {
    grid-auto-columns: minmax(16rem, 74vw);
  }

  .feature-grid,
  .context-grid,
  .steps-grid {
    grid-auto-columns: minmax(17rem, 76vw);
  }

  .compare-grid {
    grid-auto-columns: minmax(18rem, 84vw);
  }

  .impact-band {
    grid-auto-columns: minmax(16rem, 72vw);
  }

  .news-watch__grid {
    grid-auto-columns: minmax(18rem, 84vw);
  }

  .story-tabs > *,
  .feature-grid > *,
  .context-grid > *,
  .steps-grid > *,
  .compare-grid > *,
  .impact-band > *,
  .news-watch__grid > * {
    scroll-snap-align: start;
  }

  .story-tab.is-active {
    transform: translateY(-0.2rem);
  }

  .story-panel__device {
    min-height: clamp(16rem, 42vw, 18rem);
  }

  .product-shot--story {
    width: 100%;
    right: 0;
    top: clamp(-11.8rem, -29vw, -9.2rem);
  }

  .news-card--lead {
    grid-column: span 1;
  }

  .news-watch__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-watch__updated {
    text-align: left;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu-badge {
    font-size: 0.58rem;
  }

  .hero {
    min-height: clamp(34rem, 88svh, 42rem);
  }

  .hero__grid {
    padding-block: 6.75rem 3rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .news-watch__copy h2 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .news-watch__statement {
    padding: 1.2rem;
  }

  .hero__summary {
    font-size: 1rem;
  }

  .hero__panel {
    min-height: 31rem;
  }

  .signal-card--primary,
  .signal-card--neutral,
  .bubble {
    transform: none;
  }

  .signal-card--primary {
    left: 0.8rem;
    top: 0.8rem;
  }

  .signal-card--neutral {
    top: 7.5rem;
    right: 0.8rem;
  }

  .hero__device {
    width: min(14rem, 70%);
    right: 1.2rem;
  }

  .product-shot--hero {
    right: -4%;
    bottom: 2%;
  }

  .bubble--one {
    top: 13rem;
    left: 0.8rem;
  }

  .bubble--two {
    right: 0.8rem;
    bottom: 7.5rem;
  }

  .bubble--three {
    left: 1.1rem;
    bottom: 2rem;
  }

  .feature-grid,
  .context-grid {
    grid-auto-columns: minmax(16rem, 84vw);
  }

  .feature-card,
  .context-card,
  .step-card {
    min-height: 15rem;
  }

  .news-card {
    min-height: 18.5rem;
  }

  .compare-card {
    min-height: 22rem;
  }

  .impact-band article {
    min-height: 8rem;
  }

  .story-tab.is-active {
    transform: translateY(-0.15rem);
  }

  .story-preview {
    min-height: 24rem;
  }

  .story-panel__device {
    min-height: clamp(15.25rem, 54vw, 17rem);
  }

  .product-shot--story {
    width: 100%;
    right: 0;
    top: clamp(-10.6rem, -34vw, -8.2rem);
  }

  .section-title h2,
  .story-panel h3,
  .compare-card h3,
  .cta-card__copy h2 {
    line-height: 1;
  }

  .footer__inner {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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