:root {
  --ink: #071525;
  --muted: #52677a;
  --line: #d7e2ec;
  --paper: #ffffff;
  --mist: #edf5fa;
  --navy: #06162d;
  --blue: #0878e8;
  --cyan: #19b7ca;
  --green: #18a872;
  --amber: #ffb341;
  --shell: 1200px;
  --header-height: 64px;
  --product-nav-height: 50px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--product-nav-height) + 18px);
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.is-embedded .site-header,
body.is-embedded .site-footer {
  display: none;
}

body.is-embedded {
  --header-height: 0px;
}

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

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

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  white-space: nowrap;
  text-overflow: clip;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 5vw, 76px);
}

h2 {
  font-size: clamp(32px, 3.2vw, 52px);
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
}

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

.skip-link {
  position: fixed;
  z-index: 300;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 8px 12px;
  color: #fff;
  background: var(--blue);
}

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

.site-header {
  position: sticky;
  z-index: 120;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(10, 38, 67, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(3, 25, 49, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--shell));
  height: 100%;
  margin-inline: auto;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 760;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
  color: #334b60;
  font-size: 14px;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
  display: grid;
  height: 100%;
  place-items: center;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--blue);
  transition: transform 180ms ease;
}

.global-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.language-button,
.nav-cta,
.product-action {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 15px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.language-button {
  color: #18364f;
  background: #fff;
}

.nav-cta,
.product-action {
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.product-nav {
  position: sticky;
  z-index: 110;
  top: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--product-nav-height);
  padding-inline: max(24px, calc((100vw - var(--shell)) / 2));
  color: #253e54;
  border-bottom: 1px solid rgba(15, 50, 77, 0.12);
  background: rgba(247, 251, 254, 0.94);
  backdrop-filter: blur(16px);
}

.product-title {
  font-size: 14px;
  font-weight: 780;
  white-space: nowrap;
}

.product-links {
  display: flex;
  align-items: center;
  gap: 25px;
  height: 100%;
  font-size: 13px;
  white-space: nowrap;
}

.product-links a {
  position: relative;
  display: grid;
  height: 100%;
  place-items: center;
}

.product-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--cyan);
  transition: transform 180ms ease;
}

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

.product-action {
  justify-self: end;
  min-height: 32px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  color: #fff;
  background: var(--navy);
}

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

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 16, 35, 0.96) 0%, rgba(3, 20, 43, 0.84) 38%, rgba(4, 35, 55, 0.28) 71%, rgba(4, 24, 43, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 18, 36, 0.52), transparent 42%);
}

.hero-content {
  padding-block: 78px 64px;
}

.hero-content > * {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  color: #3ce2f1;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.hero-lead {
  margin-top: 24px;
  color: #d5e5f2;
  font-size: 18px;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 14px 36px rgba(8, 120, 232, 0.3);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 650px;
  margin-top: 48px;
  border: 1px solid rgba(154, 206, 238, 0.22);
  background: rgba(9, 47, 86, 0.55);
  backdrop-filter: blur(14px);
}

.hero-metrics div {
  min-width: 0;
  padding: 18px 20px;
}

.hero-metrics div + div {
  border-left: 1px solid rgba(154, 206, 238, 0.2);
}

.hero-metrics dt {
  font-size: 18px;
  font-weight: 780;
}

.hero-metrics dd {
  margin-top: 2px;
  color: #a8c5dc;
  font-size: 12px;
}

.value-rail {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: #dbeeff;
  background: #071b32;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid article {
  min-width: 0;
  padding: 28px 24px 30px;
  border-right: 1px solid rgba(173, 211, 237, 0.14);
}

.value-grid article:first-child {
  border-left: 1px solid rgba(173, 211, 237, 0.14);
}

.value-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.value-grid strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 18px;
}

.value-grid p {
  margin-top: 6px;
  color: #97aec3;
  font-size: 13px;
  line-height: 1.65;
}

.section,
.guidance-section,
.membership-section,
.operations-section,
.scenarios-section,
.faq-section,
.closing-section {
  position: relative;
  padding-block: 104px;
  overflow: hidden;
}

.journey-section {
  background: #fff;
}

.journey-layout,
.payment-layout,
.membership-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 76px;
  min-width: 0;
}

.section-copy,
.membership-copy,
.split-heading > *,
.operations-heading > *,
.faq-layout > * {
  min-width: 0;
}

.section-kicker {
  color: var(--blue);
}

.section-kicker.light {
  color: #67eaf3;
}

.section-copy h2,
.membership-copy h2,
.split-heading h2,
.operations-heading h2,
.faq-heading h2 {
  margin-top: 13px;
}

.section-copy > p:not(.section-kicker),
.membership-copy > p:not(.section-kicker),
.split-heading > p,
.operations-heading > p,
.faq-heading > p:not(.section-kicker) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.journey-steps {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  min-width: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.journey-steps b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 12px;
}

.journey-steps span,
.journey-steps strong,
.journey-steps small {
  display: block;
  min-width: 0;
}

.journey-steps strong {
  font-size: 16px;
}

.journey-steps small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.media-frame {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cbdbe8;
  border-radius: 6px;
  background: #eaf3f8;
  box-shadow: 0 28px 72px rgba(13, 47, 76, 0.16);
}

.media-frame img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.journey-media {
  transform: translateY(18px);
}

.journey-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  min-width: 210px;
  padding: 14px 18px;
  color: #fff;
  border-left: 3px solid var(--cyan);
  background: rgba(5, 28, 50, 0.88);
  backdrop-filter: blur(12px);
}

.journey-media figcaption span {
  color: #73eaf2;
  font-size: 11px;
}

.journey-media figcaption b {
  font-size: 15px;
}

.guidance-section,
.operations-section {
  color: #fff;
  background: var(--navy);
}

.guidance-section::before,
.operations-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(33, 109, 158, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 109, 158, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
}

.split-heading,
.operations-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.guidance-section .split-heading > p,
.operations-heading > p {
  color: #a9c1d2;
}

.wide-visual,
.operations-visual,
.scenario-visual {
  position: relative;
  margin-top: 52px;
  min-width: 0;
}

.wide-visual img,
.operations-visual img,
.scenario-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.wide-visual {
  border: 1px solid rgba(134, 213, 231, 0.24);
  box-shadow: 0 38px 84px rgba(0, 0, 0, 0.28);
}

.data-ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: #dff8ff;
  background: rgba(4, 26, 47, 0.9);
  backdrop-filter: blur(12px);
}

.data-ribbon span {
  padding: 16px 18px;
  text-align: center;
  border-right: 1px solid rgba(159, 218, 232, 0.18);
  font-size: 13px;
  font-weight: 700;
}

.payment-section {
  background: #f3f8fb;
}

.payment-layout {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.payment-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.payment-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.payment-list dt {
  font-weight: 760;
}

.payment-list dd {
  color: var(--muted);
  font-size: 14px;
}

.membership-section {
  color: #fff;
  background: linear-gradient(115deg, #063253, #075d68 60%, #0b7055);
}

.membership-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.membership-copy > p:not(.section-kicker) {
  color: #c5dde4;
}

.membership-index {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid rgba(196, 233, 238, 0.22);
}

.membership-index span {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 15px 0;
  border-bottom: 1px solid rgba(196, 233, 238, 0.22);
}

.membership-index b {
  color: #72f0d2;
}

.membership-index small {
  color: #c7dce2;
  font-size: 13px;
}

.membership-visual {
  min-width: 0;
  transform: translateX(32px);
  border-left: 4px solid var(--amber);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.25);
}

.membership-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.operations-layout {
  position: relative;
}

.operations-visual {
  border: 1px solid rgba(118, 210, 226, 0.24);
}

.operations-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(143, 214, 229, 0.24);
  border-top: 0;
  background: rgba(17, 61, 91, 0.56);
}

.operations-rail span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 20px 22px;
  border-right: 1px solid rgba(143, 214, 229, 0.18);
}

.operations-rail b {
  font-size: 15px;
}

.operations-rail small {
  color: #9fbbce;
  font-size: 12px;
}

.scenarios-section {
  background: #fff;
}

.scenarios-section .split-heading > p,
.faq-heading > p:not(.section-kicker) {
  color: var(--muted);
}

.scenario-visual {
  overflow: hidden;
  border-bottom: 5px solid var(--blue);
}

.scenario-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.scenario-index span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.scenario-index b {
  color: var(--blue);
  font-size: 12px;
}

.scenario-index strong {
  font-size: 15px;
}

.scenario-index small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.faq-section {
  background: #edf4f8;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 80px;
}

.faq-list {
  border-top: 1px solid #b9cad7;
}

.faq-list details {
  border-bottom: 1px solid #b9cad7;
}

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 760;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  display: grid;
  width: 28px;
  height: 28px;
  content: "+";
  transform: translateY(-50%);
  place-items: center;
  color: var(--blue);
  border: 1px solid #a9bfce;
  border-radius: 50%;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 48px 20px 0;
  color: var(--muted);
  font-size: 14px;
}

.closing-section {
  padding-block: 88px;
  color: #fff;
  background: #fff;
}

.closing-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
  padding: 54px 60px;
  background: linear-gradient(110deg, #06172f, #073e64 58%, #087e80);
  box-shadow: 0 30px 68px rgba(6, 33, 58, 0.2);
}

.closing-panel h2 {
  margin-top: 10px;
}

.closing-panel p:not(.eyebrow) {
  margin-top: 16px;
  color: #bbd4e2;
}

.closing-actions {
  flex-wrap: nowrap;
  margin-top: 0;
}

.site-footer {
  color: #a9bed0;
  background: #061323;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  font-size: 12px;
}

.footer-brand {
  color: #fff;
}

.footer-brand img {
  width: 28px;
  height: 28px;
}

.footer-inner > span:last-child {
  justify-self: end;
  text-align: right;
}

.back-top {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(8, 34, 57, 0.14);
  backdrop-filter: blur(12px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

@media (max-width: 1080px) {
  .global-nav {
    gap: 18px;
  }

  .product-links {
    gap: 15px;
  }

  .journey-layout,
  .payment-layout,
  .membership-layout {
    gap: 44px;
  }

  .split-heading,
  .operations-heading {
    gap: 40px;
  }

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

  .scenario-index span:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 58px;
    --product-nav-height: 46px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .global-nav,
  .product-title,
  .product-action {
    display: none;
  }

  .product-nav {
    display: block;
    padding-inline: 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .product-links {
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-block: 68px 54px;
  }

  .hero-content > * {
    max-width: 590px;
  }

  .hero-metrics {
    width: min(100%, 590px);
  }

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

  .value-grid article:nth-child(2) {
    border-right: 0;
  }

  .value-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(173, 211, 237, 0.14);
  }

  .journey-layout,
  .payment-layout,
  .membership-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .journey-media,
  .membership-visual {
    transform: none;
  }

  .payment-media {
    order: 2;
  }

  .split-heading,
  .operations-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
  }

  .split-heading > p,
  .operations-heading > p {
    max-width: 720px;
  }

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

  .operations-rail span:nth-child(2) {
    border-right: 0;
  }

  .operations-rail span:nth-child(n + 3) {
    border-top: 1px solid rgba(143, 214, 229, 0.18);
  }

  .faq-layout {
    gap: 42px;
  }

  .closing-panel {
    grid-template-columns: 1fr;
  }

  .closing-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 28px;
  }

  .footer-inner > span:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 56px;
    --product-nav-height: 44px;
  }

  body {
    font-size: 15px;
  }

  .shell,
  .nav-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

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

  .nav-actions {
    gap: 6px;
  }

  .nav-cta {
    display: none;
  }

  .language-button {
    min-height: 34px;
    padding-inline: 11px;
  }

  .product-nav {
    padding-inline: 14px;
  }

  .product-links {
    gap: 22px;
    font-size: 12px;
  }

  .hero {
    align-items: end;
    min-height: 670px;
  }

  .hero-media {
    object-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 17, 34, 0.48) 0%, rgba(4, 17, 34, 0.68) 38%, rgba(4, 17, 34, 0.98) 77%),
      linear-gradient(90deg, rgba(4, 17, 34, 0.72), rgba(4, 17, 34, 0.18));
  }

  .hero-content {
    padding-block: 42px 28px;
  }

  .hero h1 {
    margin-top: 12px;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .button {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .hero-metrics div {
    padding: 13px 8px;
    text-align: center;
  }

  .hero-metrics dt {
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-metrics dd {
    display: none;
  }

  .value-grid article {
    padding: 18px 14px 20px;
  }

  .value-grid strong {
    font-size: 14px;
  }

  .value-grid p {
    font-size: 11px;
  }

  .section,
  .guidance-section,
  .membership-section,
  .operations-section,
  .scenarios-section,
  .faq-section,
  .closing-section {
    padding-block: 64px;
  }

  .journey-layout,
  .payment-layout,
  .membership-layout {
    gap: 34px;
  }

  .section-copy > p:not(.section-kicker),
  .membership-copy > p:not(.section-kicker),
  .split-heading > p,
  .operations-heading > p,
  .faq-heading > p:not(.section-kicker) {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }

  .journey-steps {
    margin-top: 24px;
  }

  .journey-steps li {
    padding: 12px 0;
  }

  .journey-media figcaption {
    right: 10px;
    bottom: 10px;
    min-width: 0;
    padding: 9px 11px;
  }

  .journey-media figcaption b {
    font-size: 12px;
  }

  .wide-visual,
  .operations-visual,
  .scenario-visual {
    margin-top: 28px;
  }

  .data-ribbon {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .data-ribbon span {
    padding: 11px 8px;
    font-size: 11px;
  }

  .payment-list {
    margin-top: 24px;
  }

  .payment-list div {
    grid-template-columns: 100px 1fr;
    gap: 12px;
    padding: 12px 0;
  }

  .payment-list dt,
  .payment-list dd {
    font-size: 12px;
  }

  .membership-index {
    margin-top: 24px;
  }

  .membership-index span {
    grid-template-columns: 68px 1fr;
  }

  .operations-rail span {
    padding: 15px 13px;
  }

  .operations-rail b {
    font-size: 13px;
  }

  .operations-rail small {
    font-size: 10px;
  }

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

  .scenario-index span {
    padding: 15px 13px;
  }

  .scenario-index span:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .scenario-index span:nth-child(even) {
    border-right: 0;
  }

  .faq-layout {
    gap: 28px;
  }

  .faq-list summary {
    padding-block: 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .closing-panel {
    gap: 26px;
    padding: 34px 24px;
  }

  .closing-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 380px) {
  .hero-actions,
  .closing-actions {
    grid-template-columns: 1fr;
  }

  .hero-metrics dt {
    font-size: 11px;
  }

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

  .value-grid article {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(173, 211, 237, 0.14);
  }
}

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

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

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