:root {
  --bg: #ffffff;
  --bg-soft: #f8f4fa;
  --bg-soft-2: #f5ecef;
  --panel: #f2eff4;
  --text: #271b24;
  --muted: #6e5f6b;
  --line: #eadfea;
  --line-strong: #dcc8d6;
  --cta: #d60036;
  --cta-2: #e20074;
  --shadow: 0 18px 40px rgba(56, 18, 32, 0.08);
  --shadow-soft: 0 10px 24px rgba(56, 18, 32, 0.06);
  --shadow-hover: 0 22px 46px rgba(56, 18, 32, 0.14);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --radius: 8px;
  --container: min(1180px, calc(100% - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8fb 45%, #ffffff 100%);
  font-family: "Microsoft YaHei UI", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Segoe UI", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cta), var(--cta-2));
  z-index: 1000;
  pointer-events: none;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

button,
summary {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1200;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  transform: translateY(-180%);
  transition: transform 0.18s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(234, 223, 234, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(45, 18, 31, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(56, 18, 32, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand-copy small {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--cta);
  box-shadow: 0 10px 22px rgba(214, 0, 54, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}

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

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(214, 0, 54, 0.38);
  background: #fff7f9;
  box-shadow: 0 0 0 4px rgba(214, 0, 54, 0.06), 0 14px 28px rgba(214, 0, 54, 0.12);
}

.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);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #3b2c37;
  background: transparent;
  white-space: nowrap;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), text-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.site-nav a .nav-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  display: block;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 247, 249, 0.96);
  border-color: rgba(214, 0, 54, 0.38);
  color: #c80034;
  border-radius: 999px;
  text-shadow: 0 0 10px rgba(214, 0, 54, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 0 0 4px rgba(214, 0, 54, 0.06);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 16px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 10px 22px rgba(214, 0, 54, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  color: #ffffff !important;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: clip;
  background: #fff;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 28%, rgba(255, 255, 255, 0.68) 58%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.25) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 64px 0 56px;
}

.hero-copy {
  width: min(690px, 100%);
  padding-bottom: 24px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

#hero-title {
  margin: 0;
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 44rem;
  font-size: 18px;
  line-height: 1.85;
  color: #352732;
}

.hero-sublead {
  margin: 12px 0 0;
  max-width: 46rem;
  color: var(--muted);
  line-height: 1.85;
}

.hero-actions {
  margin-top: 28px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(214, 0, 54, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cta-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.hero-pills {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills li {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #433240;
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 82px 0;
  background: #ffffff;
  scroll-margin-top: 96px;
}

.section-alt {
  background: var(--bg-soft);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 40px;
  align-items: start;
  grid-template-areas: "copy media";
}

.section-grid-reverse {
  grid-template-areas: "media copy";
}

.section-copy-only {
  display: block;
}

.section-copy-only .section-copy {
  max-width: 900px;
  margin: 0 auto;
}

.section-copy {
  grid-area: copy;
  min-width: 0;
}

.section-copy > .section-kicker {
  width: fit-content;
  margin: 0 auto 14px;
  text-align: center;
}

.section-copy h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.section-copy h3 {
  margin: 18px 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.section-copy p {
  margin: 0 0 14px;
  color: #352732;
  line-height: 1.88;
}

.section-media {
  grid-area: media;
  margin: 0;
  align-self: start;
}

.section-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #ffffff;
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), filter 0.24s var(--ease);
}

.section-media:hover img {
  border-color: rgba(214, 0, 54, 0.3);
  box-shadow: var(--shadow-hover);
  filter: saturate(1.04) contrast(1.02);
}

.section-media figcaption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.fact-grid {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fact-grid div {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fcfafc 100%);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(45, 18, 31, 0.03);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), background-color 0.22s var(--ease);
}

.fact-grid div:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 0, 54, 0.26);
  box-shadow: 0 16px 30px rgba(45, 18, 31, 0.09);
}

.fact-grid dt {
  font-size: 12px;
  color: var(--cta);
  font-weight: 700;
  margin-bottom: 6px;
}

.fact-grid dd {
  margin: 0;
  color: #352732;
  line-height: 1.6;
}

.bullet-list,
.step-list,
.timeline,
.feature-grid,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  color: #352732;
  line-height: 1.75;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.bullet-list li:hover {
  color: #25111e;
  transform: translateX(4px);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.bullet-list li:hover::before {
  transform: rotate(45deg) scale(1.12);
  box-shadow: 0 0 0 4px rgba(214, 0, 54, 0.08);
}

.step-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.step-list li {
  position: relative;
  min-height: 34px;
  padding: 14px 16px 14px 56px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfafc 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #352732;
  line-height: 1.75;
  box-shadow: 0 8px 18px rgba(45, 18, 31, 0.03);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.step-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 0, 54, 0.26);
  box-shadow: 0 16px 30px rgba(45, 18, 31, 0.09);
}

.step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.step-list li:hover::before {
  transform: scale(1.08);
  box-shadow: 0 0 0 5px rgba(214, 0, 54, 0.1);
}

.feature-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  padding: 16px 16px 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fcfafc 100%);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(45, 18, 31, 0.04);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 0, 54, 0.28);
  box-shadow: 0 18px 34px rgba(45, 18, 31, 0.1);
}

.feature-mark {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%);
  box-shadow: 0 0 0 4px rgba(214, 0, 54, 0.1);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.feature-grid article:hover .feature-mark {
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 0 0 7px rgba(214, 0, 54, 0.1);
}

.feature-grid h4 {
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.timeline {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  overflow: visible;
  padding: 0;
}

.timeline li {
  width: 100%;
  min-height: 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(214, 0, 54, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fcfafc 100%);
  box-shadow: 0 8px 18px rgba(45, 18, 31, 0.04);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-content: start;
  align-items: start;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.timeline li:hover {
  transform: translateX(4px);
  border-color: rgba(214, 0, 54, 0.28);
  border-left-color: var(--cta);
  box-shadow: 0 16px 30px rgba(45, 18, 31, 0.09);
}

.timeline time {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(214, 0, 54, 0.08);
  color: var(--cta);
  font-size: 12px;
  font-weight: 700;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.timeline li:hover time {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(214, 0, 54, 0.16);
}

.timeline p {
  margin: 0;
  color: #352732;
  line-height: 1.75;
}

.faq-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: clip;
  box-shadow: 0 8px 18px rgba(45, 18, 31, 0.04);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(214, 0, 54, 0.26);
  box-shadow: 0 16px 30px rgba(45, 18, 31, 0.09);
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-item summary {
  position: relative;
  list-style: none;
  padding: 16px 48px 16px 18px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--cta);
  background: #fff7f9;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--cta);
  border-bottom: 2px solid var(--cta);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.18s ease;
}

.faq-item[open] summary {
  background: #fbf5f8;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: #352732;
  line-height: 1.8;
}

.friend-links {
  padding: 64px 0 58px;
  background:
    radial-gradient(circle at 22% 10%, rgba(255, 255, 255, 0.58) 0 18%, transparent 42%),
    linear-gradient(100deg, rgba(214, 0, 54, 0.18) 0%, rgba(226, 0, 116, 0.16) 48%, rgba(214, 0, 54, 0.22) 100%);
  border-top: 1px solid rgba(214, 0, 54, 0.1);
}

.friend-links-inner {
  text-align: center;
}

.friend-kicker {
  margin: 0 0 8px;
  color: var(--cta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.friend-links h2 {
  position: relative;
  margin: 0;
  color: #2e1f2b;
  font-size: 36px;
  line-height: 1.15;
}

.friend-links h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cta), var(--cta-2));
}

.friend-link-list {
  margin: 36px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.friend-link-list a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(214, 0, 54, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: #5a2f51;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(56, 18, 32, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), color 0.22s var(--ease), background-color 0.22s var(--ease);
}

.friend-link-list a:hover,
.friend-link-list a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(214, 0, 54, 0.42);
  background: rgba(255, 255, 255, 0.9);
  color: var(--cta);
  box-shadow: 0 16px 32px rgba(214, 0, 54, 0.16);
}

.site-footer {
  padding: 26px 0 40px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-inner p {
  margin: 0;
}

.footer-note {
  text-align: right;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1100px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 12px;
  }

  .site-nav {
    margin-left: 0;
    width: 100%;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner {
    min-height: 680px;
  }

  #hero-title {
    font-size: 48px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
  }

  .section-grid-reverse {
    grid-template-areas:
      "copy"
      "media";
  }

  .section-copy h2 {
    font-size: 32px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .header-inner {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

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

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 11px;
  }

  .js .site-nav {
    position: absolute;
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    z-index: 950;
    display: none;
    width: auto;
    margin-left: 0;
    padding: 12px;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    border: 1px solid rgba(214, 0, 54, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(56, 18, 32, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .js .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
    padding: 9px 11px;
    font-size: 13px;
    border-color: var(--line);
    background: #ffffff;
  }

  .site-nav .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 54%, rgba(255, 255, 255, 0.72) 100%);
  }

  .hero-inner {
    min-height: 620px;
    padding: 44px 0 36px;
  }

  #hero-title {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 16px;
  }

  .hero-sublead {
    font-size: 14px;
  }

  .section {
    padding: 64px 0;
  }

  .section-copy h2 {
    font-size: 28px;
  }

  .section-copy h3 {
    font-size: 19px;
  }

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

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

  .friend-links {
    padding: 52px 0 48px;
  }

  .friend-links h2 {
    font-size: 30px;
  }

  .friend-link-list {
    gap: 10px;
  }

  .friend-link-list a {
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .footer-note {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
