@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito-800.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito-900.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #0b0b0d;
  --paper: #f7f7f3;
  --white: #ffffff;
  --muted: #68686d;
  --line: rgba(11, 11, 13, 0.14);
  --dark-line: rgba(255, 255, 255, 0.16);
  --cyan: #1ed7e8;
  --green: #65f1ad;
  --pink: #f35cf2;
  --violet: #8477ff;
  --blue: #5da9ff;
  --content: 1240px;
  --page-pad: clamp(20px, 4vw, 58px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
  color: var(--white);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.light-header {
  color: var(--ink);
  background: rgba(247, 247, 243, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100%, calc(var(--content) + var(--page-pad) * 2));
  height: 76px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 22px;
  font-weight: 900;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    -8px 4px 18px rgba(243, 92, 242, 0.9),
    8px -3px 18px rgba(30, 215, 232, 0.9),
    4px 7px 19px rgba(101, 241, 173, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-download,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.site-header:not(.scrolled):not(.light-header) .nav-download {
  background: var(--white);
  color: var(--ink);
}

.nav-download:hover,
.button:hover {
  transform: translateY(-2px);
}

.button.secondary {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button.light {
  background: var(--white);
  color: var(--ink);
}

.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: inherit;
}

.nav-toggle svg {
  width: 25px;
  height: 25px;
}

main {
  overflow: clip;
}

.shell {
  width: min(100%, calc(var(--content) + var(--page-pad) * 2));
  margin: 0 auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.hero {
  position: relative;
  min-height: min(960px, 100svh);
  overflow: hidden;
  background: #050507;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 25%;
  background: linear-gradient(to bottom, transparent, rgba(5, 5, 7, 0.9));
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  min-height: min(960px, 100svh);
  padding-top: clamp(118px, 16vh, 174px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(34px, 6vw, 100px);
}

.hero-copy {
  align-self: start;
}

.eyebrow {
  margin: 0 0 18px;
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(68px, 10vw, 154px);
  line-height: 0.86;
  font-weight: 900;
}

.hero-statement {
  max-width: 720px;
  min-height: 2.6em;
  margin: clamp(24px, 4vw, 46px) 0 0;
  font-size: clamp(25px, 3.3vw, 48px);
  line-height: 1.07;
  font-weight: 700;
}

.rotating-word {
  display: inline-grid;
  color: var(--green);
  overflow: hidden;
  vertical-align: bottom;
}

.rotating-word > span {
  grid-area: 1 / 1;
  transition: opacity 280ms ease, transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.rotating-word > .leaving {
  opacity: 0;
  transform: translateY(-80%);
}

.rotating-word > .entering {
  opacity: 0;
  transform: translateY(80%);
}

.rotating-punctuation {
  color: var(--white);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-phone-wrap {
  position: relative;
  align-self: end;
  justify-self: center;
  width: min(390px, 34vw);
  transform: translateY(12%);
}

.hero-aura {
  position: absolute;
  inset: 16% -28% 8%;
  border-radius: 45%;
  background:
    radial-gradient(circle at 25% 64%, rgba(243, 92, 242, 0.58), transparent 38%),
    radial-gradient(circle at 75% 28%, rgba(30, 215, 232, 0.62), transparent 38%),
    radial-gradient(circle at 72% 80%, rgba(101, 241, 173, 0.43), transparent 34%);
  filter: blur(42px);
  animation: aura-breathe 5s ease-in-out infinite alternate;
}

@keyframes aura-breathe {
  to {
    transform: scale(1.08) translateY(-2%);
    filter: blur(52px);
  }
}

.phone {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 9 / 19.8;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 42px;
  background: #09090b;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 13px;
  left: 50%;
  width: 29%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050506;
}

.phone img,
.phone video {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: cover;
  background: #050506;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: var(--page-pad);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.hero-scroll svg {
  width: 17px;
  animation: scroll-hint 1.6s ease-in-out infinite;
}

@keyframes scroll-hint {
  50% { transform: translateY(5px); }
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.ticker-track {
  width: max-content;
  padding: 24px 0;
  display: flex;
  gap: 46px;
  animation: ticker 30s linear infinite;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 800;
}

.ticker-track span::after {
  content: "•";
  margin-left: 46px;
  color: var(--violet);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.intro {
  padding: clamp(100px, 16vw, 210px) 0;
}

.intro-copy {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 1.02;
  font-weight: 800;
}

.intro-copy .soft {
  color: #aaa9a4;
}

.section {
  padding: clamp(90px, 13vw, 174px) 0;
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.white {
  background: var(--white);
}

.section.green {
  background: #baf8d8;
}

.section.blue {
  background: #c8e2ff;
}

.section-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
  font-weight: 900;
}

.section-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.3;
}

.dark .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.feature-layout.reverse {
  grid-template-columns: minmax(340px, 1.15fr) minmax(0, 0.85fr);
}

.feature-layout.reverse .feature-copy {
  order: 2;
}

.feature-copy .button {
  margin-top: 30px;
}

.visual-stage {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
}

.visual-stage .phone {
  width: min(350px, 76vw);
}

.visual-stage.dual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.visual-stage.dual .phone {
  width: 100%;
  max-width: 315px;
}

.visual-stage.dual .phone:nth-child(2) {
  transform: translateY(80px);
}

.stage-glow {
  position: absolute;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 55%, rgba(243, 92, 242, 0.5), transparent 45%),
    radial-gradient(circle at 65% 35%, rgba(30, 215, 232, 0.55), transparent 44%),
    radial-gradient(circle at 65% 75%, rgba(101, 241, 173, 0.43), transparent 42%);
  filter: blur(48px);
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.capability {
  min-height: 250px;
  padding: 30px 24px;
  border-right: 1px solid currentColor;
}

.capability:last-child {
  border-right: 0;
}

.capability svg {
  width: 34px;
  height: 34px;
}

.capability h3 {
  margin: 72px 0 8px;
  font-size: 25px;
  line-height: 1.05;
}

.capability p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.dark .capability p {
  color: rgba(255, 255, 255, 0.65);
}

.media-section {
  padding: clamp(80px, 11vw, 150px) 0;
  background: #e6e2ff;
}

.demo-swiper {
  margin-top: 54px;
  overflow: visible;
}

.demo-slide {
  width: min(360px, 78vw);
}

.demo-slide .phone {
  width: 100%;
}

.demo-caption {
  margin-top: 18px;
}

.demo-caption strong {
  display: block;
  font-size: 22px;
}

.demo-caption span {
  color: var(--muted);
}

.swiper-controls {
  margin-top: 32px;
  display: flex;
  gap: 10px;
}

.swiper-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.swiper-button svg {
  width: 22px;
}

.origin {
  padding: clamp(120px, 18vw, 230px) 0;
  background: var(--white);
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  align-items: end;
  gap: 70px;
}

.origin-quote {
  margin: 0;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  font-weight: 800;
}

.origin-meta {
  padding-bottom: 9px;
}

.origin-meta p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 19px;
}

.timeline {
  margin-top: 78px;
  border-top: 1px solid var(--line);
}

.timeline-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  font-size: 17px;
  font-weight: 900;
}

.timeline-row h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.1;
}

.timeline-row p {
  margin: 0;
  color: var(--muted);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 15vw, 190px) 0;
  background: #0a0a0c;
  color: var(--white);
}

.cta::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: -200px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    -90px -20px 160px rgba(243, 92, 242, 0.58),
    80px -80px 180px rgba(30, 215, 232, 0.52),
    20px 40px 120px rgba(101, 241, 173, 0.45);
}

.cta h2 {
  position: relative;
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.94;
  font-weight: 900;
}

.cta .hero-actions {
  position: relative;
}

.site-footer {
  padding: 64px 0 36px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--dark-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(120px, 0.6fr));
  gap: 44px;
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.page-main {
  padding-top: 76px;
}

.dark-header-page .page-main {
  padding-top: 0;
}

.page-hero {
  padding: clamp(96px, 13vw, 180px) 0 clamp(80px, 10vw, 130px);
  background: var(--paper);
}

.page-hero.dark-page {
  background: var(--ink);
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(66px, 10vw, 144px);
}

.page-hero p {
  max-width: 760px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(22px, 2.8vw, 36px);
}

.dark-page p {
  color: rgba(255, 255, 255, 0.67);
}

.page-section {
  padding: clamp(74px, 10vw, 136px) 0;
}

.prose {
  max-width: 830px;
}

.prose h2 {
  margin: 1.8em 0 0.5em;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.prose h3 {
  margin: 1.7em 0 0.45em;
  font-size: 25px;
}

.prose p,
.prose li {
  color: #434348;
  font-size: clamp(17px, 1.7vw, 21px);
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose .updated {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.feature-index {
  border-top: 1px solid var(--line);
}

.feature-index-row {
  display: grid;
  grid-template-columns: 52px minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.feature-index-row svg {
  width: 28px;
}

.feature-index-row h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
}

.feature-index-row p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.story-chapter {
  min-height: 80vh;
  padding: clamp(90px, 14vw, 190px) 0;
  display: flex;
  align-items: center;
}

.story-chapter:nth-child(even) {
  background: var(--white);
}

.story-copy {
  max-width: 940px;
}

.story-copy .year {
  display: block;
  margin-bottom: 20px;
  font-weight: 900;
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
}

.story-copy p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 29px);
}

.story-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.story-source svg {
  width: 16px;
  height: 16px;
}

.update-list {
  border-top: 1px solid var(--line);
}

.update {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 36px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.update time {
  font-weight: 900;
}

.update h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.update p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.creator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.creator-orb {
  width: min(480px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: url("/assets/images/logo.webp") center / cover;
}

.creator-copy h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
}

.creator-copy p {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 26px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .75, .2, 1);
}

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

@media (max-width: 980px) {
  body.menu-open .site-header {
    height: 100dvh;
    color: var(--ink);
    background: var(--paper);
    backdrop-filter: none;
  }

  body.menu-open .site-header .brand {
    position: relative;
    z-index: 101;
  }

  body.menu-open .site-footer .brand {
    visibility: hidden;
    opacity: 0;
  }

  .nav-links {
    position: absolute;
    z-index: 99;
    inset: 0;
    padding: 110px var(--page-pad) 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    transform: translateX(100%);
    background: var(--paper);
    color: var(--ink);
    font-size: 34px;
    transition: transform 280ms cubic-bezier(.2, .8, .2, 1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links .nav-download {
    margin-top: 18px;
    background: var(--ink) !important;
    color: var(--white) !important;
    font-size: 17px;
  }

  .nav-toggle {
    position: relative;
    z-index: 101;
    display: inline-flex;
    color: var(--white);
  }

  .site-header.light-header .nav-toggle,
  .site-header.scrolled .nav-toggle,
  body.menu-open .nav-toggle {
    color: var(--ink);
  }

  .hero-shell {
    grid-template-columns: 1fr;
    align-content: start;
    padding-top: 130px;
  }

  .hero-copy {
    z-index: 4;
  }

  .hero-phone-wrap {
    width: min(390px, 70vw);
    transform: translateY(22%);
  }

  .feature-layout,
  .feature-layout.reverse,
  .origin-grid,
  .creator-grid {
    grid-template-columns: 1fr;
  }

  .feature-layout.reverse .feature-copy {
    order: 0;
  }

  .visual-stage {
    min-height: 660px;
  }

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

  .capability:nth-child(2) {
    border-right: 0;
  }

  .capability:nth-child(-n+2) {
    border-bottom: 1px solid currentColor;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .nav-shell {
    height: 68px;
  }

  .page-main {
    padding-top: 68px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-shell {
    min-height: 900px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(62px, 22vw, 102px);
  }

  .hero-phone-wrap {
    width: min(330px, 78vw);
  }

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

  .cta .hero-actions .button {
    width: auto;
    max-width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .creator-orb {
    width: min(250px, 66vw);
    margin: 0 auto;
  }

  .intro-copy {
    font-size: clamp(36px, 11vw, 56px);
  }

  .section-title {
    font-size: clamp(45px, 14vw, 70px);
  }

  .visual-stage {
    min-height: 590px;
  }

  .visual-stage.dual {
    width: 112%;
    margin-left: -6%;
    gap: 12px;
  }

  .visual-stage.dual .phone:nth-child(2) {
    transform: translateY(46px);
  }

  .capability-strip {
    grid-template-columns: 1fr;
  }

  .capability {
    min-height: 200px;
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .capability:last-child {
    border-bottom: 0;
  }

  .capability h3 {
    margin-top: 42px;
  }

  .timeline-row,
  .update,
  .feature-index-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-index-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .feature-index-row p {
    grid-column: 2;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .cta::before {
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: -130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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