:root {
  --blue: #0879f8;
  --blue-dark: #075fd0;
  --yellow: #ffd24a;
  --yellow-soft: #fff0bf;
  --dark: #050038;
  --text: #1f2430;
  --muted: #5f6878;
  --line: #edf1f7;
  --navy: #1e3365;
  --white: #ffffff;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 70px;
  background: #fff;
  box-shadow: 0 2px 18px rgba(9, 26, 64, 0.06);
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.header.is-scrolled {
  box-shadow: 0 10px 30px rgba(9, 26, 64, 0.11);
}

.nav-wrap {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 240px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: #1b2334;
  font-size: 15px;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 24px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--blue);
  border-radius: 8px;
  opacity: 0;
  transform: scaleX(0.3);
  transition: 0.2s ease;
}

.nav a:hover::after,
.nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a.active {
  color: var(--blue);
}

.nav-contact {
  min-width: 112px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  transition: transform 0.22s var(--ease-out), background 0.22s ease, box-shadow 0.22s ease;
}

.nav-contact:hover {
  background: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(8, 121, 248, 0.24);
  transform: translateY(-2px);
}

.menu-btn {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #dfe5ef;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: #111827;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.header.menu-open .menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header.menu-open .menu-btn span:nth-child(2) {
  opacity: 0;
}

.header.menu-open .menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero-yellow {
  position: relative;
  padding: 88px 0 118px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.36), transparent 8%),
    radial-gradient(ellipse at 42% 56%, rgba(255, 244, 176, 0.34), transparent 28%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.2) 0 13%, transparent 13% 36%, rgba(255, 186, 29, 0.18) 36% 100%),
    linear-gradient(135deg, #ffe677 0%, #ffd24a 48%, #ffc21e 100%);
}

.hero-yellow::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.52) 0.8px, transparent 1.3px),
    linear-gradient(110deg, transparent 0 40%, rgba(255, 255, 255, 0.12) 40% 41.4%, transparent 41.4% 100%),
    linear-gradient(135deg, transparent 0 54%, rgba(255, 255, 255, 0.16) 54% 56%, transparent 56% 100%);
  background-position: 0 0, 0 0, center;
  background-size: 30px 30px, 100% 100%, 100% 100%;
  opacity: 0.46;
  pointer-events: none;
  animation: heroPatternDrift 16s linear infinite;
}

.hero-yellow::after {
  position: absolute;
  right: -9%;
  bottom: -68px;
  left: -9%;
  height: 152px;
  content: "";
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.72), transparent 66%),
    #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 50px;
  align-items: center;
}

.hero-copy {
  color: var(--dark);
  animation: heroCopyIn 0.82s var(--ease-out) both;
}

.hero-kicker {
  margin: 0 0 14px;
  color: rgba(5, 0, 56, 0.82);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0;
  animation: heroLineIn 0.72s 0.06s var(--ease-out) both;
}

.hero-copy h1 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(42px, 4.3vw, 58px);
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: 0;
  animation: heroLineIn 0.78s 0.16s var(--ease-out) both;
}

.hero-copy h1 span {
  display: block;
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 36px;
  color: rgba(5, 0, 56, 0.86);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
  animation: heroLineIn 0.78s 0.28s var(--ease-out) both;
}

.primary-btn {
  position: relative;
  min-width: 190px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 3px;
  color: #fff;
  background: var(--blue);
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 12px 26px rgba(1, 120, 255, 0.2);
  transform: translateZ(0);
  animation: heroLineIn 0.78s 0.4s var(--ease-out) both;
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s var(--ease-out);
}

.primary-btn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, 0.3) 45%, transparent 56% 100%);
  transform: translateX(-120%);
  transition: transform 0.58s var(--ease-out);
}

.primary-btn::after {
  position: relative;
  margin-left: 8px;
  content: "›";
  font-size: 28px;
  line-height: 1;
  transition: transform 0.22s var(--ease-out);
}

.primary-btn:hover::before {
  transform: translateX(120%);
}

.primary-btn:hover {
  background: var(--blue-dark);
  box-shadow: 0 18px 34px rgba(1, 120, 255, 0.28);
  transform: translateY(-3px);
}

.primary-btn:hover::after {
  transform: translateX(4px);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  transform: translateY(calc(var(--hero-shift, 0px) * -1));
  animation: heroImageIn 0.92s 0.18s var(--ease-out) both;
  transition: transform 0.12s linear;
}

.hero-image::before,
.hero-image::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(0.2px);
  pointer-events: none;
}

.hero-image::before {
  right: 10%;
  top: 4%;
  width: 22px;
  height: 22px;
  animation: floatBubble 4.8s ease-in-out infinite;
}

.hero-image::after {
  left: 8%;
  bottom: 16%;
  width: 14px;
  height: 14px;
  animation: floatBubble 5.8s 0.8s ease-in-out infinite reverse;
}

.hero-image img {
  width: min(100%, 640px);
  filter: drop-shadow(0 30px 38px rgba(47, 57, 90, 0.18));
  animation: heroFloat 4.8s ease-in-out infinite;
  will-change: transform;
}

.feature-band {
  position: relative;
  z-index: 3;
  padding: 34px 0 88px;
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 36px 36px 32px;
  border-radius: 4px;
  background: var(--yellow-soft);
  box-shadow: 0 14px 34px rgba(95, 87, 42, 0.05);
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    background 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.32s var(--ease-out);
}

.feature-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.36), transparent 19%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.feature-card::after,
.product-card::after,
.price-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at var(--mx, 75%) var(--my, 18%), rgba(8, 121, 248, 0.16), transparent 26%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.feature-card:hover {
  background: #fff4cf;
  box-shadow: 0 26px 58px rgba(95, 87, 42, 0.16);
  transform: translateY(-12px) scale(1.012);
}

.feature-card:hover::before,
.feature-card:hover::after,
.product-card:hover::after,
.price-card:hover::after {
  opacity: 1;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  margin: 26px 0 18px;
  color: var(--dark);
  font-size: 22px;
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  color: #333;
  font-size: 15px;
}

.quote-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #ffd148;
  font-size: 56px;
  font-family: Arial, sans-serif;
  line-height: 1;
}

.feature-icon {
  width: 58px;
  height: 58px;
  position: relative;
  color: var(--blue);
  transition: transform 0.24s var(--ease-out), color 0.24s ease;
}

.feature-card:hover .feature-icon {
  color: var(--blue-dark);
  transform: translateY(-2px) scale(1.06);
}

.shield-icon::before {
  position: absolute;
  left: 9px;
  top: 2px;
  width: 40px;
  height: 52px;
  content: "";
  background: currentColor;
  clip-path: polygon(50% 0, 100% 18%, 88% 75%, 50% 100%, 12% 75%, 0 18%);
}

.shield-icon::after {
  position: absolute;
  left: 18px;
  top: 12px;
  width: 22px;
  height: 31px;
  content: "";
  background: var(--yellow-soft);
  clip-path: polygon(50% 0, 100% 18%, 88% 75%, 50% 100%, 12% 75%, 0 18%);
}

.lock-icon::before {
  position: absolute;
  left: 10px;
  top: 25px;
  width: 38px;
  height: 26px;
  content: "";
  border: 4px solid currentColor;
}

.lock-icon::after {
  position: absolute;
  left: 17px;
  top: 4px;
  width: 24px;
  height: 28px;
  content: "";
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.cloud-icon::before {
  position: absolute;
  left: 3px;
  top: 22px;
  width: 48px;
  height: 26px;
  content: "";
  border: 4px solid currentColor;
  border-radius: 22px;
}

.cloud-icon::after {
  position: absolute;
  left: 16px;
  top: 10px;
  width: 24px;
  height: 24px;
  content: "";
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.product-section {
  position: relative;
  padding: 88px 0 90px;
  overflow: hidden;
  background: #f6faff;
}

.product-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), transparent 28%),
    radial-gradient(circle at 20% 10%, rgba(8, 121, 248, 0.07), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(255, 210, 74, 0.12), transparent 20%);
  pointer-events: none;
}

.product-section .container {
  position: relative;
  z-index: 1;
}

.section-title {
  margin-bottom: 42px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--dark);
  font-size: 34px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0;
}

.section-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  color: #6d7890;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.section-title span::before,
.section-title span::after {
  width: 44px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(8, 121, 248, 0.5));
}

.section-title span::after {
  background: linear-gradient(90deg, rgba(8, 121, 248, 0.5), transparent);
}

.tab-header {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 34px;
}

.tab-header button {
  min-width: 210px;
  height: 48px;
  border: 1px solid #dbe5f5;
  border-radius: 4px;
  color: var(--dark);
  background: #fff;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s var(--ease-out);
}

.tab-header button.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(8, 121, 248, 0.18);
}

.tab-header button:hover {
  transform: translateY(-2px);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: tabFade 0.34s var(--ease-out) both;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-grid.single {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}

.product-card {
  position: relative;
  min-height: 250px;
  padding: 34px 26px;
  border-radius: 4px;
  background: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(9, 26, 64, 0.08);
  transition:
    box-shadow 0.24s ease,
    transform 0.32s var(--ease-out);
}

.product-card:hover {
  box-shadow: 0 28px 64px rgba(9, 26, 64, 0.14);
  transform: translateY(-12px) scale(1.012);
}

.round-icon {
  width: 68px;
  height: 68px;
  display: grid;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 24px;
  box-shadow: 0 12px 28px rgba(8, 121, 248, 0.22);
  transition: transform 0.24s var(--ease-out), background 0.24s ease;
}

.product-card:hover .round-icon {
  background: var(--blue-dark);
  transform: translateY(-3px) rotate(4deg);
}

.product-card h3 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 20px;
  font-weight: 500;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.why-section {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.26), transparent 12%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%),
    var(--yellow);
}

.why-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1.4px);
  background-size: 32px 32px;
  opacity: 0.34;
  pointer-events: none;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 50px;
  align-items: center;
}

.why-copy h2 {
  margin: 0 0 34px;
  color: #333;
  font-size: 34px;
  font-weight: 500;
}

.why-intro {
  max-width: 34em;
  margin: -16px 0 26px;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.8;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-points article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  min-height: 100%;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(95, 87, 42, 0.06);
  transition:
    background 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.32s var(--ease-out),
    border-color 0.24s ease;
}

.why-points article:hover {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(8, 121, 248, 0.16);
  box-shadow: 0 18px 40px rgba(95, 87, 42, 0.1);
  transform: translateX(12px);
}

.why-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 22px rgba(8, 121, 248, 0.18);
}

.why-copy h3 {
  margin: 0 0 8px;
  color: #333;
  font-size: 20px;
  font-weight: 500;
}

.why-copy p {
  margin: 0;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.75;
}

.why-image img {
  width: min(100%, 560px);
  margin: 0 auto;
  filter: drop-shadow(0 22px 30px rgba(47, 57, 90, 0.1));
  animation: heroFloat 6.2s 0.4s ease-in-out infinite;
}

.trust-section {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7faff 0%, #fff 100%);
}

.trust-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 121, 248, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 121, 248, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 76%, transparent 100%);
  pointer-events: none;
}

.trust-section .container {
  position: relative;
  z-index: 1;
}

.trust-title {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.trust-title p {
  max-width: 660px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
}

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

.trust-panel {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 1px solid #dfe8f5;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(9, 26, 64, 0.06);
  overflow: hidden;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.3s var(--ease-out);
}

.trust-panel:hover {
  border-color: rgba(8, 121, 248, 0.34);
  box-shadow: 0 22px 48px rgba(9, 26, 64, 0.1);
  transform: translateY(-8px);
}

.trust-heading span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.trust-heading h3 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
}

.trust-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.process-panel {
  grid-column: span 2;
}

.report-panel {
  grid-column: span 2;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding-left: 42px;
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  content: counter(process);
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.process-list strong,
.report-lines strong {
  display: block;
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
}

.process-list span,
.report-lines span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.report-lines {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.report-lines div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #e5edf8;
  background: #f8fbff;
}

.compliance-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 4px solid var(--blue);
  background: #fff;
  box-shadow: 0 12px 30px rgba(9, 26, 64, 0.055);
}

.compliance-strip strong {
  flex: 0 0 auto;
  color: var(--dark);
  font-size: 18px;
}

.compliance-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.pricing-section {
  margin-top: -68px;
  padding: 118px 0 94px;
  background:
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.pricing-title {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 42px;
  margin-left: auto;
}

.pricing-note {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
  border: 1px solid #dfe8f5;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(9, 26, 64, 0.055);
  overflow: hidden;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.32s var(--ease-out);
}

.price-card.active {
  border-color: var(--blue);
  box-shadow: 0 18px 44px rgba(1, 120, 255, 0.14);
  transform: translateY(-8px);
}

.price-card:hover {
  border-color: rgba(8, 121, 248, 0.38);
  box-shadow: 0 22px 52px rgba(9, 26, 64, 0.11);
  transform: translateY(-8px);
}

.price-card.active:hover {
  transform: translateY(-12px);
}

.hot {
  position: absolute;
  top: 18px;
  right: 22px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  letter-spacing: 0;
}

.price-meta {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.price-card h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 23px;
  font-weight: 600;
}

.price-card p {
  min-height: 56px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.price-fit {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 10px 12px;
  border: 1px solid #e5edf8;
  background: #f8fbff;
  color: #42506a;
  font-size: 13px;
  line-height: 1.55;
}

.price-fit div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
}

.price-fit strong {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.price-fit span {
  color: #35445f;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  color: #3f4655;
  font-size: 14px;
}

.price-card li {
  padding-left: 18px;
  position: relative;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #21a6ff;
}

.price {
  margin-top: auto;
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
}

.price-card a {
  position: relative;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 3px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  transition: background 0.22s ease, transform 0.22s var(--ease-out), box-shadow 0.22s ease;
}

.price-card a::before,
.travel-box .button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, 0.28) 45%, transparent 56% 100%);
  transform: translateX(-120%);
  transition: transform 0.58s var(--ease-out);
}

.price-card a:hover::before,
.travel-box .button:hover::before {
  transform: translateX(120%);
}

.price-card a:hover {
  background: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(8, 121, 248, 0.22);
  transform: translateY(-2px);
}

.travel-box {
  position: relative;
  height: 260px;
  padding-top: 62px;
  overflow: hidden;
  background: var(--navy) url("../assets/images/cta-blue.png") center/cover no-repeat;
  text-align: center;
}

.travel-box::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent);
  transform: translateX(-100%);
  animation: ctaSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.travel-box p {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: 30px;
}

.travel-box .button {
  position: relative;
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 42px auto 0;
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  overflow: hidden;
  transition: background 0.22s ease, transform 0.22s var(--ease-out);
}

.travel-box .button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: #17233f;
}

.footer a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 26px;
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 13px;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.mobile-cta {
  display: none;
}

.header::after {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), rgba(8, 121, 248, 0.35));
  opacity: 0;
  transition: opacity 0.24s ease, width 0.12s linear;
}

.header.is-scrolled::after {
  opacity: 1;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.animate-on-scroll {
  opacity: 1;
  transform: translateY(54px) scale(0.985);
  transition:
    opacity 0.64s var(--ease-out),
    transform 0.78s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-card.animate-on-scroll.is-visible:hover,
.product-card.animate-on-scroll.is-visible:hover {
  transform: translateY(-12px) scale(1.012);
}

.why-copy article.animate-on-scroll.is-visible:hover {
  transform: translateX(12px);
}

.price-card.active.animate-on-scroll.is-visible {
  transform: translateY(-8px);
}

.price-card.animate-on-scroll.is-visible:hover {
  transform: translateY(-8px);
}

.price-card.active.animate-on-scroll.is-visible:hover {
  transform: translateY(-12px);
}

.trust-panel.animate-on-scroll.is-visible:hover {
  transform: translateY(-8px);
}

@keyframes heroCopyIn {
  from {
    opacity: 1;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 1;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.is-pressed {
  transform: translateY(1px) scale(0.985) !important;
}

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

@keyframes heroPatternDrift {
  from {
    background-position: 0 0, 0 0, center;
  }
  to {
    background-position: 30px 30px, 0 0, center;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -18px, 0);
  }
}

@keyframes tabFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaSweep {
  0%,
  45% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

@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;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav,
  .nav-contact {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    padding: 10px 20px 18px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(9, 26, 64, 0.12);
    transform: translateY(-140%);
    transition: transform 0.22s ease;
  }

  .header.menu-open .mobile-nav {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid #edf1f7;
    color: #111827;
  }

  .hero-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-image img,
  .why-image img {
    animation: none;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .why-points article:hover {
    transform: none;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .process-panel,
  .report-panel {
    grid-column: auto;
  }

  .compliance-strip {
    display: block;
  }

  .compliance-strip span {
    display: block;
    margin-top: 8px;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .header,
  .nav-wrap {
    height: 60px;
  }

  .logo img {
    width: 246px;
    max-width: calc(100vw - 100px);
  }

  .mobile-nav {
    top: 60px;
  }

  .hero-yellow {
    padding: 38px 0 56px;
  }

  .hero-kicker {
    font-size: 18px;
    line-height: 1.38;
  }

  .hero-copy h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.72;
  }

  .primary-btn {
    min-width: 156px;
    height: 46px;
    font-size: 15px;
  }

  .hero-copy .primary-btn,
  .price-card a,
  .travel-box .button {
    display: none;
  }

  .feature-band {
    padding: 22px 0 44px;
  }

  .feature-card {
    min-height: auto;
    padding: 22px;
  }

  .product-section,
  .why-section,
  .trust-section {
    padding: 44px 0;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .section-title h2,
  .why-copy h2 {
    font-size: 24px;
  }

  .section-title span {
    gap: 10px;
    font-size: 13px;
  }

  .section-title span::before,
  .section-title span::after {
    width: 28px;
  }

  .tab-header {
    display: grid;
    gap: 10px;
  }

  .tab-header button,
  .product-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.active {
    transform: none;
  }

  .price-card:hover,
  .price-card.active:hover,
  .trust-panel:hover,
  .feature-card:hover,
  .product-card:hover {
    transform: none;
  }

  .pricing-section {
    margin-top: 0;
    padding: 48px 0;
  }

  .travel-box p {
    max-width: calc(100% - 36px);
    margin-right: auto;
    margin-left: auto;
    font-size: 22px;
  }

  .why-intro {
    margin: -10px 0 20px;
    font-size: 14px;
  }

  .why-points,
  .trust-grid,
  .pricing-grid {
    gap: 14px;
  }

  .why-points article,
  .trust-panel,
  .price-card,
  .product-card {
    padding: 20px;
  }

  .product-card {
    min-height: auto;
  }

  .trust-panel {
    min-height: auto;
  }

  .price-card {
    min-height: auto;
  }

  .price-card p {
    min-height: 0;
  }

  .price {
    font-size: 22px;
  }

  .travel-box {
    height: 218px;
    padding-top: 48px;
  }

  .footer {
    padding-bottom: 96px;
  }

  .back-top {
    right: 16px;
    bottom: 88px;
    width: 40px;
    height: 40px;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px 8px 14px;
    border: 1px solid rgba(8, 121, 248, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 36px rgba(9, 26, 64, 0.16);
    backdrop-filter: blur(10px);
  }

  .mobile-cta span {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-cta a {
    min-width: 96px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    background: var(--blue);
    font-size: 14px;
    font-weight: 600;
  }
}

/* 动效增强 */
.hero-yellow::before {
  opacity: 0.54;
  animation: heroPatternDrift 10s linear infinite, heroLightPulse 4.8s ease-in-out infinite;
}

.hero-yellow::after {
  filter: drop-shadow(0 -24px 32px rgba(255, 255, 255, 0.42));
}

.hero-grid::before {
  position: absolute;
  inset: -20% -9%;
  z-index: -1;
  content: "";
  background:
    linear-gradient(108deg, transparent 0 37%, rgba(255, 255, 255, 0.22) 45%, transparent 54% 100%),
    radial-gradient(ellipse at 58% 45%, rgba(255, 255, 255, 0.24), transparent 35%);
  transform: translateX(-38%);
  animation: heroWideSweep 6.2s var(--ease-out) infinite;
  pointer-events: none;
}

.hero-copy {
  animation: heroCopyImpact 0.9s var(--ease-out) both;
}

.primary-btn,
.nav-contact {
  animation: buttonBreath 2.8s ease-in-out infinite;
}

.hero-image {
  animation: heroImageImpact 1s 0.12s var(--ease-out) both;
}

.hero-image img {
  filter: drop-shadow(0 34px 44px rgba(47, 57, 90, 0.24));
  animation: heroFloatStrong 3.8s ease-in-out infinite;
}

.hero-image::before {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.1);
  animation: floatBubbleStrong 3.8s ease-in-out infinite;
}

.hero-image::after {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.08);
  animation: floatBubbleStrong 4.4s 0.8s ease-in-out infinite reverse;
}

.feature-card,
.product-card {
  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.34s ease,
    transform 0.34s var(--ease-out),
    filter 0.34s var(--ease-out);
}

.feature-card:hover,
.product-card:hover {
  filter: saturate(1.08);
  transform: translateY(-16px) scale(1.018);
}

.feature-card:hover .feature-icon,
.product-card:hover .round-icon {
  animation: iconPop 0.58s var(--ease-out) both;
}

.animate-on-scroll {
  transform: translateY(68px) scale(0.972);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.86s var(--ease-out),
    filter 0.86s var(--ease-out);
}

.animate-on-scroll.is-visible {
  transform: translateY(0) scale(1);
}

.feature-card.animate-on-scroll.is-visible:hover,
.product-card.animate-on-scroll.is-visible:hover {
  transform: translateY(-16px) scale(1.018);
}

.travel-box::before {
  background: linear-gradient(100deg, transparent 0 35%, rgba(255, 255, 255, 0.22) 47%, transparent 60% 100%);
  animation: ctaSweep 4.8s ease-in-out infinite;
}

.back-top.show {
  animation: backTopPulse 2.4s ease-in-out infinite;
}

@keyframes heroCopyImpact {
  from {
    opacity: 1;
    transform: translateY(36px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroImageImpact {
  from {
    opacity: 1;
    transform: translateY(42px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(calc(var(--hero-shift, 0px) * -1)) scale(1);
  }
}

@keyframes heroFloatStrong {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -22px, 0) rotate(-1deg);
  }
}

@keyframes floatBubbleStrong {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(14px, -24px, 0) scale(1.16);
  }
}

@keyframes heroWideSweep {
  0%,
  38% {
    transform: translateX(-42%);
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  82%,
  100% {
    transform: translateX(42%);
    opacity: 0;
  }
}

@keyframes heroLightPulse {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.13);
  }
}

@keyframes buttonBreath {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(1, 120, 255, 0.2);
  }
  50% {
    box-shadow: 0 18px 38px rgba(1, 120, 255, 0.36);
  }
}

@keyframes iconPop {
  0% {
    transform: translateY(-2px) scale(1);
  }
  55% {
    transform: translateY(-6px) scale(1.16);
  }
  100% {
    transform: translateY(-3px) scale(1.08);
  }
}

@keyframes backTopPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(8, 121, 248, 0);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(8, 121, 248, 0.1);
  }
}

@media (max-width: 920px) {
  .hero-grid::before {
    animation-duration: 7.2s;
  }

  .hero-image,
  .hero-image img {
    animation-duration: 4.8s;
  }
}

@media (max-width: 640px) {
  .feature-card:hover,
  .product-card:hover {
    filter: none;
  }
}

/* 桌面布局 */
@media (min-width: 921px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: clamp(52px, 6vw, 86px);
  }

  .hero-copy {
    max-width: 620px;
    padding-top: 22px;
    margin-left: clamp(0px, 1.4vw, 20px);
  }

  .hero-image {
    justify-content: flex-end;
    padding: 4px clamp(18px, 3.2vw, 46px) 0 0;
    translate:
      var(--hero-drift-x, 0px)
      calc(var(--hero-drift-y, 0px) + var(--hero-scroll-drop, 0px));
  }

  .hero-image img {
    width: min(100%, 586px);
    transform-origin: 58% 52%;
  }

  .feature-grid {
    grid-template-columns: 1.04fr 0.96fr 1fr;
    gap: 30px;
    align-items: start;
  }

  .feature-card:nth-child(1) {
    margin-top: 22px;
  }

  .feature-card:nth-child(2) {
    margin-top: -18px;
  }

  .feature-card:nth-child(3) {
    margin-top: 34px;
  }

  .why-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: clamp(54px, 6vw, 82px);
  }

  .why-image {
    padding: 18px 0 0 10px;
  }

}

@media (min-width: 1121px) {
  .product-grid {
    grid-template-columns: 1.02fr 0.94fr 1.08fr 0.96fr;
    gap: 30px;
    align-items: start;
  }

  .product-card:nth-child(2),
  .product-card:nth-child(4) {
    margin-top: 28px;
  }

  .product-card:nth-child(3) {
    margin-top: -14px;
  }

  .product-grid.single {
    grid-template-columns: minmax(0, 500px);
    justify-content: start;
    padding-left: min(12vw, 132px);
  }

  .product-grid.single .product-card {
    margin-top: 0;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }

  .price-card:nth-child(4),
  .price-card:nth-child(5) {
    min-height: 360px;
  }
}

.hero-yellow {
  isolation: isolate;
}

.hero-yellow::before {
  background-size: 30px 30px, 100% 100%, 100% 100%;
}

.hero-grid::after {
  position: absolute;
  top: 8%;
  right: 31%;
  z-index: -1;
  width: min(28vw, 340px);
  height: min(28vw, 340px);
  content: "";
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 58%),
    conic-gradient(from 18deg, transparent 0 26%, rgba(255, 255, 255, 0.28) 35%, transparent 48% 100%);
  border-radius: 50%;
  opacity: 0.72;
  filter: blur(0.2px);
  animation: heroHaloRotate 8.6s linear infinite;
  pointer-events: none;
}

.hero-copy::before {
  display: block;
  width: 56px;
  height: 4px;
  margin-bottom: 22px;
  content: "";
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(8, 121, 248, 0.22);
  animation: accentLineIn 0.82s 0.08s var(--ease-out) both;
}

.feature-card::before,
.product-card::before {
  transition: opacity 0.28s ease, transform 0.46s var(--ease-out);
}

.feature-card:hover::before,
.product-card:hover::before {
  transform: translate3d(0, -8px, 0) scale(1.03);
}

.feature-card:hover,
.product-card:hover {
  transform:
    perspective(900px)
    translateY(-17px)
    scale(1.018)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
}

.feature-card.animate-on-scroll.is-visible:hover,
.product-card.animate-on-scroll.is-visible:hover {
  transform:
    perspective(900px)
    translateY(-17px)
    scale(1.018)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
}

.animate-on-scroll {
  clip-path: inset(10% 0 0 0);
  transform: translate3d(var(--reveal-x, 0px), 76px, 0) scale(0.968);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.86s var(--ease-out),
    filter 0.86s var(--ease-out),
    clip-path 0.86s var(--ease-out);
}

.animate-on-scroll.is-visible {
  clip-path: inset(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.why-copy article:hover .why-icon,
.price-card:hover li::before {
  animation: iconPop 0.58s var(--ease-out) both;
}

@keyframes heroHaloRotate {
  from {
    transform: rotate(0deg) scale(0.98);
  }
  50% {
    transform: rotate(180deg) scale(1.08);
  }
  to {
    transform: rotate(360deg) scale(0.98);
  }
}

@keyframes accentLineIn {
  from {
    transform: translateX(-18px) scaleX(0.24);
    transform-origin: left;
    opacity: 0;
  }
  to {
    transform: translateX(0) scaleX(1);
    transform-origin: left;
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .hero-grid::after {
    top: 30%;
    right: 4%;
    width: 220px;
    height: 220px;
    opacity: 0.45;
  }

  .hero-image {
    padding: 0;
    translate: 0 0;
  }

  .hero-copy::before {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-kicker {
    margin-right: auto;
    margin-left: auto;
  }

  .feature-card,
  .product-card,
  .price-card,
  .why-points article {
    margin-top: 0;
    margin-left: 0;
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-copy h1 {
    max-width: 11.5em;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 18px;
    letter-spacing: 0;
  }

  .hero-text {
    max-width: 23em;
    font-size: 14px;
    line-height: 1.72;
    margin-bottom: 22px;
  }

  .hero-image {
    margin-top: -6px;
  }

  .hero-image img {
    width: min(86vw, 310px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    clip-path: none;
  }

  .hero-grid::after {
    animation: none;
  }
}
