:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --ink: #15202b;
  --muted: #617085;
  --soft: #e6eef3;
  --brand: #009b8d;
  --brand-2: #ff3b86;
  --brand-3: #0b6f8f;
  --accent: #ffc857;
  --shadow: 0 18px 48px rgba(27, 42, 56, .12);
  --shadow-soft: 0 12px 34px rgba(27, 42, 56, .09);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 155, 141, .34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--surface);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(230, 238, 243, .76);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 32px rgba(21, 32, 43, .08);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img,
.brand span,
.footer-brand img,
.footer-brand span {
  transition: transform .28s var(--ease), color .28s var(--ease);
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
  border-radius: 50%;
}

.brand:hover img,
.footer-brand:hover img {
  transform: rotate(-8deg) scale(1.06);
}

.brand:hover span,
.footer-brand:hover span {
  color: var(--brand);
}

.brand span {
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #26384a;
  border-radius: 6px;
  font-weight: 700;
  overflow: hidden;
  transition: color .24s var(--ease), background .24s var(--ease), transform .24s var(--ease);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--brand);
  background: rgba(0, 155, 141, .09);
  transform: translateY(-1px);
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--soft);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 130px 0 82px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 22, 23, .36), rgba(19, 13, 25, .26)),
    url("img/cover.png") center center / cover no-repeat,
    #071617;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 16, 20, .86) 0%, rgba(3, 16, 20, .60) 44%, rgba(3, 16, 20, .24) 100%),
    linear-gradient(180deg, rgba(3, 16, 20, .16), rgba(3, 16, 20, .66));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 23%, rgba(0, 155, 141, .20) 23% 37%, transparent 37% 100%),
    linear-gradient(300deg, transparent 0 58%, rgba(255, 59, 134, .16) 58% 73%, transparent 73% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 34px);
  opacity: .82;
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  max-width: 780px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  animation: heroContentIn .7s var(--ease) both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #8bf3df;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 740px;
  font-size: 4.9rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.02rem;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  overflow: hidden;
  isolation: isolate;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -70%;
  z-index: -1;
  width: 58%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .42) 48%, transparent 100%);
  transform: skewX(-18deg);
  transition: left .56s var(--ease);
}

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

.btn:hover::before {
  left: 116%;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  background-size: 160% 160%;
  box-shadow: 0 16px 32px rgba(0, 128, 118, .28);
}

.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 20px 38px rgba(0, 128, 118, .34);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .16);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .09);
  font-size: .92rem;
  font-weight: 700;
  transition: transform .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}

.hero-notes span:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 243, 223, .7);
  background: rgba(139, 243, 223, .12);
}

.section {
  padding: 78px 0;
}

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

.section-copy h2,
.section-head h2 {
  margin: 0;
  color: #122334;
  font-size: 2.45rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.nowrap {
  white-space: nowrap;
}

.section-copy p,
.section-head p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 64px;
  align-items: start;
}

.section-copy p {
  margin-top: 18px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item,
.feature-card,
.work-card,
.faq-item {
  position: relative;
  border: 1px solid var(--soft);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.timeline-item::before,
.feature-card::before,
.work-card::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 155, 141, .12), transparent 34%, rgba(255, 59, 134, .10));
  opacity: 0;
  transition: opacity .28s var(--ease);
}

.timeline-item:hover::before,
.feature-card:hover::before,
.work-card:hover::before,
.faq-item:hover::before {
  opacity: 1;
}

.timeline-item {
  padding: 24px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}

.timeline-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 59, 134, .30);
  box-shadow: var(--shadow);
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-2);
  font-size: .9rem;
  font-weight: 900;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}

.timeline-item:hover span {
  transform: scale(1.08);
  box-shadow: 0 12px 26px rgba(255, 59, 134, .26);
}

.timeline-item h3,
.feature-card h3,
.work-card h3 {
  margin: 0 0 10px;
  color: #12304a;
  font-size: 1.25rem;
  line-height: 1.3;
}

.timeline-item p,
.feature-card p,
.work-card p {
  margin: 0;
  color: var(--muted);
}

.feature-section {
  background: #fff;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 38px;
}

.development-head {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.development-head h2 {
  max-width: 780px;
  font-size: 2.25rem;
  line-height: 1.2;
  text-wrap: balance;
}

.development-head::after {
  margin: 22px auto 0;
}

.center {
  text-align: center;
}

.section-head p {
  margin-top: 14px;
}

.section-head::after {
  content: "";
  display: block;
  width: 82px;
  height: 4px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

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

.feature-card {
  min-height: 310px;
  padding: 34px 30px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.feature-card::after,
.work-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s var(--ease);
}

.feature-card:hover::after,
.work-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 155, 141, .38);
  box-shadow: var(--shadow);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(0, 155, 141, .13), rgba(255, 59, 134, .10));
  transition: transform .28s var(--ease), color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

.icon-box svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  transition: transform .28s var(--ease);
}

.feature-card:hover .icon-box {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 32px rgba(0, 155, 141, .22);
  transform: translateY(-3px) rotate(-3deg);
}

.feature-card:hover .icon-box svg {
  transform: scale(1.08);
}

.works-section {
  background:
    linear-gradient(180deg, #edf5f8 0%, #f7f9fb 100%);
}

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

.work-card {
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.work-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 155, 141, .30);
  box-shadow: var(--shadow);
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dce8ee;
  transition: transform .46s var(--ease), filter .46s var(--ease);
}

.work-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.work-body {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.feature-card h3,
.work-card h3,
.timeline-item h3 {
  transition: color .24s var(--ease);
}

.feature-card:hover h3,
.work-card:hover h3,
.timeline-item:hover h3 {
  color: var(--brand);
}

.rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: #f2a300;
  white-space: nowrap;
}

.rating span {
  transition: text-shadow .24s var(--ease), transform .24s var(--ease);
}

.work-card:hover .rating span {
  text-shadow: 0 0 14px rgba(242, 163, 0, .36);
  transform: translateY(-1px);
}

.rating strong {
  color: #16263a;
}

.rating em {
  color: #75849a;
  font-style: normal;
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 155, 141, .24);
  box-shadow: var(--shadow);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(0, 155, 141, .34);
}

.faq-question {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 66px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: #12304a;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}

.faq-question i::after {
  transform: rotate(90deg);
  transition: transform .24s var(--ease);
}

.faq-question[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.faq-answer {
  position: relative;
  z-index: 1;
  padding: 0 22px 22px;
  color: var(--muted);
  animation: faqSlide .22s var(--ease) both;
}

.faq-answer p {
  margin: 0;
}

.bottom-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: #fff;
  background:
    radial-gradient(circle at 28% 20%, rgba(139, 243, 223, .24), transparent 34%),
    radial-gradient(circle at 72% 30%, rgba(255, 59, 134, .26), transparent 38%),
    linear-gradient(135deg, #008f82 0%, #0b6f8f 52%, #ff3b86 140%);
}

.bottom-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 34px);
  opacity: .35;
}

.bottom-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  text-align: center;
}

.bottom-cta-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .78);
  font-weight: 900;
}

.bottom-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.18;
}

.bottom-cta p {
  margin: 18px auto 0;
  max-width: 680px;
  color: rgba(255, 255, 255, .84);
}

.bottom-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.bottom-cta-primary {
  color: var(--brand);
  background: #fff;
  box-shadow: 0 18px 36px rgba(3, 16, 20, .18);
}

.bottom-cta-primary:hover {
  box-shadow: 0 22px 42px rgba(3, 16, 20, .24);
}

.bottom-cta-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.bottom-cta-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .15);
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, .82);
  background: #091318;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  position: relative;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s var(--ease);
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.error-title {
  color: #122334;
  font-size: 4.6rem;
  line-height: 1.1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

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

.feature-card.reveal:not(.is-visible):nth-child(2),
.work-card.reveal:not(.is-visible):nth-child(2) {
  transition-delay: .05s;
}

.feature-card.reveal:not(.is-visible):nth-child(3),
.work-card.reveal:not(.is-visible):nth-child(3) {
  transition-delay: .10s;
}

.feature-card.reveal:not(.is-visible):nth-child(4),
.work-card.reveal:not(.is-visible):nth-child(4) {
  transition-delay: .15s;
}

.feature-card.reveal:not(.is-visible):nth-child(5),
.work-card.reveal:not(.is-visible):nth-child(5) {
  transition-delay: .20s;
}

.feature-card.reveal:not(.is-visible):nth-child(6),
.work-card.reveal:not(.is-visible):nth-child(6) {
  transition-delay: .25s;
}

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

@keyframes faqSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--soft);
    border-radius: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-menu.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 86vh;
  }

  h1 {
    font-size: 3.95rem;
  }

  .section-copy h2,
  .section-head h2 {
    font-size: 2.1rem;
  }

  .development-head h2 {
    font-size: 2rem;
  }

  .error-title {
    font-size: 3.8rem;
  }

  .hero-content {
    margin-left: auto;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .nav-wrap,
  .container,
  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  .brand span {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 92vh;
    padding: 112px 0 58px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 16, 20, .76) 0%, rgba(3, 16, 20, .58) 58%, rgba(3, 16, 20, .82) 100%);
  }

  h1 {
    font-size: 2.55rem;
  }

  .section-copy h2,
  .section-head h2 {
    font-size: 1.65rem;
  }

  .development-head h2 {
    font-size: 1.58rem;
  }

  .error-title {
    font-size: 2.65rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .btn {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .feature-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .work-body {
    padding: 22px;
  }

  .rating {
    flex-wrap: wrap;
  }

  .bottom-cta {
    padding: 54px 0;
  }

  .bottom-cta h2 {
    font-size: 1.65rem;
  }

  .bottom-cta-actions {
    flex-direction: column;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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