:root {
  --pink: #FF1493;
  --pink-deep: #8A6B7B;
  --night: #2A1B2C;
  --night-2: #120B17;
  --ink: #F8EFF4;
  --muted: #CBB7C2;
  --panel: rgba(138, 107, 123, 0.18);
  --line: rgba(255, 20, 147, 0.22);
  --warning: #B58A9F;
  --signal: #FF1493;
  --body: #2A1B2C;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #2A1B2C;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(138, 107, 123, 0.32), transparent 36%),
    radial-gradient(circle at 86% 34%, rgba(255, 20, 147, 0.12), transparent 30%),
    linear-gradient(180deg, #2A1B2C 0%, #342235 48%, #261827 100%),
    var(--body);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.72;
  letter-spacing: 0;
}

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

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

p {
  margin: 0;
}

strong,
.keyword {
  color: #F3C5DA;
  font-weight: 900;
}

.keyword {
  display: inline;
  padding: 0 0.14em;
  background: linear-gradient(180deg, transparent 58%, rgba(255, 20, 147, 0.34) 58%);
  border-radius: 3px;
}

.text-panel strong,
.steps strong,
.tips-list strong,
.feature-card strong,
.highlight-grid strong,
.timeline strong,
.faq-list strong,
.hero-copy strong {
  color: var(--warning);
  text-shadow: 0 0 16px rgba(138, 107, 123, 0.3);
}

.section-heading .keyword,
.hero-copy .keyword {
  color: #F8EFF4;
  background: linear-gradient(180deg, transparent 55%, rgba(255, 20, 147, 0.24) 55%);
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  color: #18111F;
  background: var(--signal);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(138, 107, 123, 0.24);
  background: rgba(24, 17, 31, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  color: #F8EFF4;
}

.brand img {
  width: 56px;
  height: 38px;
  object-fit: cover;
  border: 1px solid rgba(255, 20, 147, 0.28);
  border-radius: 8px;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #EBDDE5;
  font-size: 14px;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.site-menu svg,
.btn svg {
  width: 30px;
  height: 30px;
  padding: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(138, 107, 123, 0.22);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--warning);
  border-color: rgba(255, 20, 147, 0.66);
  background: rgba(138, 107, 123, 0.16);
  box-shadow: 0 0 0 4px rgba(138, 107, 123, 0.2), 0 0 22px rgba(255, 20, 147, 0.22);
  outline: none;
}

.site-menu a:hover svg,
.site-menu a:focus-visible svg,
.btn:hover svg,
.btn:focus-visible svg {
  color: var(--warning);
  background: rgba(138, 107, 123, 0.26);
  box-shadow: 0 0 0 1px rgba(255, 20, 147, 0.5);
}

.site-menu .nav-cta {
  margin-left: 4px;
  color: #18111F;
  background: linear-gradient(135deg, var(--warning), var(--signal));
  font-weight: 800;
  border-radius: 999px;
  padding: 9px 15px 9px 10px;
  animation: cta-float 2.8s ease-in-out infinite;
}

.site-menu .nav-cta svg,
.btn.primary svg {
  color: #18111F;
  background: rgba(24, 17, 31, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(138, 107, 123, 0.18);
  color: #F8EFF4;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-toggle.is-open {
  border-color: rgba(255, 20, 147, 0.56);
  background: rgba(255, 20, 147, 0.2);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(42, 27, 44, 0.92) 0%, rgba(52, 34, 53, 0.72) 48%, rgba(138, 107, 123, 0.28) 100%),
    linear-gradient(0deg, #2A1B2C 0%, rgba(42, 27, 44, 0.44) 42%, rgba(138, 107, 123, 0.18) 100%);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 128px 0 82px;
}

.eyebrow,
.section-kicker {
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-top: 14px;
  font-size: clamp(38px, 6.4vw, 78px);
  color: var(--pink);
  background: linear-gradient(135deg, #FFE4F2 0%, var(--pink) 42%, var(--warning) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.48);
}

.hero-copy {
  max-width: 760px;
  margin-top: 22px;
  color: #EADCE4;
  font-size: 18px;
}

.hero-actions,
.cta-section {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  animation-play-state: paused;
  transform: translateY(-2px);
  color: var(--warning);
  border-color: rgba(255, 20, 147, 0.72);
  box-shadow: 0 0 0 4px rgba(138, 107, 123, 0.22), 0 18px 44px rgba(255, 20, 147, 0.28);
  outline: none;
}

.site-menu .nav-cta:hover,
.site-menu .nav-cta:focus-visible {
  animation-play-state: paused;
  color: #18111F;
  border-color: transparent;
  background: linear-gradient(135deg, var(--warning), var(--signal));
  box-shadow: 0 18px 44px rgba(255, 20, 147, 0.22);
}

.site-menu .nav-cta:hover svg,
.site-menu .nav-cta:focus-visible svg {
  color: #18111F;
  background: rgba(24, 17, 31, 0.18);
  box-shadow: none;
}

.btn.primary {
  color: #18111F;
  background: linear-gradient(135deg, var(--warning), var(--signal));
  box-shadow: 0 18px 44px rgba(255, 20, 147, 0.22);
  border-radius: 999px;
  padding-left: 10px;
  padding-right: 22px;
  animation: cta-float 2.8s ease-in-out infinite;
}

@keyframes cta-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.btn.ghost {
  color: #F8EFF4;
  border-color: rgba(255, 20, 147, 0.32);
  background: rgba(138, 107, 123, 0.2);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin: 40px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(42, 27, 44, 0.76);
  box-shadow: var(--shadow);
}

.hero-facts div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts div:hover {
  background: rgba(138, 107, 123, 0.16);
  transform: translateY(-2px);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 13px;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: #F8EFF4;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 8px;
  color: var(--pink);
  background: linear-gradient(135deg, var(--pink) 0%, #D9B3C4 58%, var(--signal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(25px, 3.2vw, 38px);
}

.section-heading p:last-child {
  margin-top: 14px;
  color: var(--muted);
}

.split-layout,
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 28px;
  align-items: center;
}

.text-panel,
.tips-list,
.cta-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(138, 107, 123, 0.22), rgba(248, 239, 244, 0.055));
  box-shadow: var(--shadow);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.text-panel {
  padding: 30px;
}

.text-panel h3,
.steps h3,
.tips-list h3,
.feature-card h3,
.highlight-grid h3,
.timeline h3 {
  color: #F8EFF4;
  font-size: 20px;
}

.text-panel p,
.steps p,
.feature-card p,
.highlight-grid p,
.timeline p,
.faq-list p,
.cta-section p,
.site-footer p {
  color: var(--muted);
}

.text-panel p {
  margin-top: 14px;
}

.text-panel:hover,
.tips-list:hover,
.cta-section:hover {
  border-color: rgba(255, 20, 147, 0.38);
  background: linear-gradient(180deg, rgba(138, 107, 123, 0.26), rgba(138, 107, 123, 0.16));
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(138, 107, 123, 0.2);
  transform: translateY(-3px);
}

.media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(138, 107, 123, 0.16);
  box-shadow: var(--shadow);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.media-card:hover {
  border-color: rgba(255, 20, 147, 0.5);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.42), 0 0 28px rgba(255, 20, 147, 0.18);
  transform: translateY(-4px);
}

.media-card:hover img,
.image-row figure:hover img,
.gallery figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.05);
}

.media-card figcaption,
.image-row figcaption,
.gallery figcaption {
  padding: 12px 14px;
  color: #E4D2DC;
  font-size: 13px;
}

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

.feature-card,
.highlight-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(138, 107, 123, 0.16);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.feature-card::before,
.highlight-grid article::before,
.timeline article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--warning), var(--signal));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.feature-card:hover,
.highlight-grid article:hover {
  border-color: rgba(255, 20, 147, 0.46);
  background: rgba(138, 107, 123, 0.22);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32), 0 0 24px rgba(138, 107, 123, 0.2);
  transform: translateY(-5px);
}

.feature-card:hover::before,
.highlight-grid article:hover::before,
.timeline article:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.icon-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 20, 147, 0.4);
  border-radius: 50%;
  color: var(--warning);
  background: rgba(138, 107, 123, 0.16);
  font-size: 13px;
  font-weight: 900;
}

.feature-card p,
.highlight-grid p {
  margin-top: 12px;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.image-row figure,
.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(138, 107, 123, 0.16);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.image-row img,
.gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.image-row figure:hover,
.gallery figure:hover {
  border-color: rgba(255, 20, 147, 0.45);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34), 0 0 22px rgba(255, 20, 147, 0.12);
  transform: translateY(-4px);
}

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

.media-card.wide img {
  aspect-ratio: 16 / 9;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  padding: 22px;
  border-left: 4px solid var(--pink);
  border-radius: var(--radius);
  background: rgba(138, 107, 123, 0.16);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.steps article:hover {
  border-left-color: var(--warning);
  background: rgba(138, 107, 123, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(138, 107, 123, 0.24);
  transform: translateX(4px);
}

.steps p {
  margin-top: 10px;
}

.tips-list {
  margin-top: 18px;
  padding: 26px;
}

.tips-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.tips-list li::marker {
  color: var(--signal);
}

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

.gallery {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.gallery figure:nth-child(2) img {
  aspect-ratio: 16 / 9;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.timeline article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 170px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 28px;
  min-height: 78px;
  padding: 18px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(138, 107, 123, 0.2);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.timeline article:hover {
  border-color: rgba(255, 20, 147, 0.5);
  background: rgba(138, 107, 123, 0.22);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.32), 0 0 24px rgba(255, 20, 147, 0.14);
  transform: translateY(-5px);
}

.timeline time {
  display: block;
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 4px;
  color: var(--warning);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.timeline h3 {
  grid-column: 1;
  grid-row: 2;
  color: #F8EFF4;
  font-size: 16px;
  white-space: nowrap;
}

.timeline p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
  color: #D6C4CE;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(138, 107, 123, 0.16);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.faq-list details:hover {
  border-color: rgba(255, 20, 147, 0.42);
  background: rgba(138, 107, 123, 0.22);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26), 0 0 20px rgba(138, 107, 123, 0.2);
  transform: translateY(-2px);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #F8EFF4;
  font-weight: 800;
  transition: color 0.18s ease;
}

.faq-list details:hover summary,
.faq-list details[open] summary {
  color: var(--warning);
}

.faq-list summary::marker {
  color: var(--signal);
}

.faq-list p {
  padding: 0 20px 20px;
}

.cta-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 88px;
  padding: 32px;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 20, 147, 0.22), rgba(255, 20, 147, 0.08)),
    rgba(138, 107, 123, 0.16);
}

.cta-section h2 {
  margin-top: 8px;
  color: #F8EFF4;
  font-size: clamp(25px, 3vw, 38px);
}

.cta-section p {
  max-width: 760px;
  margin-top: 10px;
}

.friend-links {
  margin: 0 0 42px;
  padding: 54px 16px 58px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 20, 147, 0.16), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(138, 107, 123, 0.28), transparent 32%),
    linear-gradient(135deg, #2A1B2C 0%, #342235 58%, #261827 100%);
  border-top: 1px solid rgba(138, 107, 123, 0.24);
  border-bottom: 1px solid rgba(138, 107, 123, 0.24);
}

.friend-links h2 {
  margin: 0;
  color: #F8EFF4;
  font-size: clamp(25px, 3vw, 38px);
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.friend-link-list {
  width: min(1120px, calc(100% - 24px));
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.friend-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 20, 147, 0.34);
  border-radius: 999px;
  color: #F8EFF4;
  background: rgba(138, 107, 123, 0.22);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(248, 239, 244, 0.04);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.friend-link-list a span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.16), 0 0 18px rgba(255, 20, 147, 0.62);
}

.friend-link-list a:hover,
.friend-link-list a:focus-visible {
  color: var(--warning);
  border-color: rgba(255, 20, 147, 0.64);
  background: rgba(138, 107, 123, 0.2);
  box-shadow: 0 0 0 4px rgba(138, 107, 123, 0.18), 0 18px 42px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
  outline: none;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #F8EFF4;
}

.site-footer a {
  color: var(--signal);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
  }

  .site-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(24, 17, 31, 0.96);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-menu .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 680px;
  }

  .split-layout,
  .guide-layout,
  .content-grid,
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-row,
  .gallery {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 140px 1fr;
    column-gap: 18px;
  }
}

@media (max-width: 680px) {
  .nav-wrap,
  .section,
  .hero-inner,
  .cta-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    max-width: 210px;
  }

  .site-menu.is-open {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }

  .hero-bg img {
    object-position: 58% center;
  }

  .hero-inner {
    padding: 104px 0 54px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-facts,
  .split-layout,
  .guide-layout,
  .content-grid,
  .highlight-grid,
  .tips-list ul {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 6px;
    padding: 18px 20px;
  }

  .timeline time,
  .timeline h3,
  .timeline p {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 62px 0;
  }

  .text-panel,
  .tips-list,
  .cta-section {
    padding: 22px;
  }

  .feature-card,
  .highlight-grid article {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }
}

@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;
  }
}
