:root {
  --navy-950: #03132f;
  --navy-900: #071d45;
  --navy-800: #0b2a5d;
  --blue-600: #176ff2;
  --blue-500: #2c83ff;
  --cyan-400: #35d8f4;
  --mint-400: #28c7a6;
  --orange-400: #ffad4d;
  --ink-900: #172033;
  --ink-700: #44506a;
  --ink-500: #778199;
  --line: #e6ebf3;
  --surface: #ffffff;
  --canvas: #f5f7fb;
  --shadow-sm: 0 12px 36px rgba(17, 39, 78, 0.08);
  --shadow-lg: 0 32px 80px rgba(1, 19, 48, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--surface);
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -60px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 76px;
  color: #fff;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(3, 19, 47, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(44, 131, 255, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  border-radius: 1px;
  background: var(--cyan-400);
  transition: right 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

.nav-actions {
  gap: 8px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-action:hover,
.nav-action:focus-visible {
  transform: translateY(-1px);
}

.nav-action-ghost {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.04);
}

.nav-action-ghost:hover,
.nav-action-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.nav-action-primary {
  color: var(--navy-950);
  border-color: var(--cyan-400);
  background: var(--cyan-400);
  box-shadow: 0 8px 20px rgba(53, 216, 244, 0.18);
}

.nav-action-primary:hover,
.nav-action-primary:focus-visible {
  background: #74e6f9;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 1px;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 132px 0 72px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 35%, rgba(22, 111, 242, 0.3), transparent 32%),
    linear-gradient(135deg, #03132f 0%, #071d45 52%, #0a2855 100%);
}

.hero-grid,
.closing-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(63, 217, 247, 0.25);
}

.hero-orb-one {
  width: 520px;
  height: 520px;
  right: -120px;
  top: 88px;
}

.hero-orb-two {
  width: 290px;
  height: 290px;
  right: 70px;
  top: 205px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  border-radius: 1px;
  background: var(--cyan-400);
}

.hero h1 {
  max-width: 680px;
  margin: 28px 0 24px;
  font-size: clamp(48px, 5.1vw, 74px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero h1 em {
  color: var(--cyan-400);
  font-style: normal;
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 650;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button-primary {
  gap: 16px;
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 14px 34px rgba(23, 111, 242, 0.28);
}

.button-primary svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 0 6px rgba(40, 199, 166, 0.12);
}

.hero-highlights {
  display: flex;
  gap: 34px;
  margin: 44px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.hero-highlights span {
  color: var(--cyan-400);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.product-stage {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 590px;
}

.product-stage::before {
  position: absolute;
  content: "";
  width: 390px;
  height: 390px;
  left: 50%;
  top: 90px;
  border-radius: 50%;
  border: 1px solid rgba(53, 216, 244, 0.24);
  transform: translateX(-50%);
  box-shadow:
    0 0 0 36px rgba(53, 216, 244, 0.025),
    0 0 0 74px rgba(53, 216, 244, 0.018);
}

.phone {
  position: relative;
  z-index: 2;
  width: 294px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 46px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
}

.phone-frame {
  padding: 8px;
  border-radius: 38px;
  background: #020a17;
}

.phone-screen {
  overflow: hidden;
  min-height: 548px;
  padding: 12px 14px 16px;
  border-radius: 31px;
  color: var(--ink-900);
  background: #f6f8fc;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px 10px;
  font-size: 9px;
  font-weight: 700;
}

.phone-status div {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.phone-status i {
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: #172033;
}

.phone-status i:first-child {
  height: 5px;
}

.phone-status b {
  width: 12px;
  height: 7px;
  margin-left: 2px;
  border: 1px solid #172033;
  border-radius: 2px;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-brand {
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 800;
}

.app-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
}

.app-search {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  margin-top: 14px;
  padding: 0 12px;
  border: 1px solid #e6ebf3;
  border-radius: 11px;
  color: #9aa3b4;
  background: #fff;
  font-size: 9px;
}

.app-search svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.app-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  margin-top: 12px;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #0a2855, #176ff2);
}

.app-banner::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  right: -22px;
  top: -25px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.app-banner small {
  color: var(--cyan-400);
  font-size: 8px;
}

.app-banner strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.4;
}

.banner-mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--cyan-400);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.app-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.app-section-title strong {
  font-size: 11px;
}

.app-section-title span {
  color: #9aa3b4;
  font-size: 8px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 11px;
}

.quick-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.quick-grid small {
  color: #59647a;
  font-size: 7px;
}

.quick-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  font-size: 9px;
  font-weight: 800;
}

.quick-icon.blue {
  color: #176ff2;
  background: #e8f0ff;
}

.quick-icon.cyan {
  color: #008dab;
  background: #e2faff;
}

.quick-icon.orange {
  color: #d88218;
  background: #fff3df;
}

.quick-icon.mint {
  color: #15967d;
  background: #e1f8f2;
}

.goods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 10px;
}

.goods-card {
  overflow: hidden;
  padding-bottom: 10px;
  border: 1px solid #ebeff5;
  border-radius: 13px;
  background: #fff;
}

.goods-visual {
  position: relative;
  overflow: hidden;
  height: 70px;
  margin-bottom: 8px;
}

.goods-visual span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.goods-visual-one {
  background: #eef3fb;
}

.goods-visual-one span {
  background: linear-gradient(145deg, #fff, #b9c9df);
  box-shadow: 0 12px 18px rgba(45, 73, 115, 0.16);
}

.goods-visual-two {
  background: #e8f5ff;
}

.goods-visual-two span {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 20%, transparent 22%),
    conic-gradient(#176ff2, #35d8f4, #176ff2);
}

.goods-card strong,
.goods-card small,
.goods-card b {
  display: block;
  padding: 0 8px;
}

.goods-card strong {
  font-size: 8px;
}

.goods-card small {
  margin-top: 4px;
  color: #9aa3b4;
  font-size: 6px;
}

.goods-card b {
  margin-top: 7px;
  color: #176ff2;
  font-size: 8px;
}

.stage-caption {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 150px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(6, 29, 66, 0.78);
  box-shadow: 0 18px 50px rgba(0, 10, 28, 0.28);
  backdrop-filter: blur(12px);
}

.stage-caption-ai {
  left: 0;
  top: 125px;
}

.stage-caption-order {
  right: -12px;
  bottom: 100px;
}

.stage-caption span:last-child {
  display: flex;
  flex-direction: column;
}

.stage-caption strong {
  font-size: 12px;
}

.stage-caption small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.caption-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(53, 216, 244, 0.12);
}

.icon-spark::before {
  content: "✦";
  color: var(--cyan-400);
  font-size: 18px;
}

.icon-check::before {
  content: "✓";
  color: var(--mint-400);
  font-size: 18px;
  font-weight: 800;
}

.section {
  padding: 112px 0;
}

.product-section {
  background: var(--canvas);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.section-index {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.section-index.light {
  color: var(--cyan-400);
}

.section-heading h2,
.trust-heading h2,
.journey-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.section-heading p,
.journey-copy > p {
  margin: 0;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.9;
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1.25fr 0.75fr;
  align-items: center;
  gap: 30px;
  min-height: 220px;
  padding: 42px 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.capability-card:first-child {
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-sm);
}

.capability-card:last-child {
  border-radius: var(--radius-sm) var(--radius-sm) var(--radius-lg) var(--radius-lg);
}

.capability-card:hover {
  z-index: 1;
  border-color: #cbd9f2;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.capability-number {
  position: absolute;
  right: 28px;
  top: 16px;
  color: #edf1f7;
  font-family: Georgia, serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}

.capability-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 22px;
}

.capability-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mall-icon {
  color: var(--blue-600);
  background: #e9f1ff;
}

.ai-icon {
  color: #008eaa;
  background: #e4faff;
}

.service-icon {
  color: #15967d;
  background: #e3f8f3;
}

.capability-copy {
  position: relative;
  z-index: 1;
}

.capability-copy > span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 700;
}

.capability-copy h3 {
  margin: 10px 0 12px;
  font-size: 27px;
}

.capability-copy p {
  max-width: 540px;
  margin: 0;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.8;
}

.capability-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  position: relative;
  padding-left: 17px;
  color: var(--ink-700);
  font-size: 12px;
}

.capability-card li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: 0;
  top: 5px;
  border-radius: 2px;
  background: var(--blue-500);
}

.capability-ai li::before {
  background: var(--cyan-400);
}

.capability-service li::before {
  background: var(--mint-400);
}

.journey-section {
  color: #fff;
  background: var(--navy-950);
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.journey-copy > p {
  max-width: 470px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.58);
}

.journey-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.badge-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(53, 216, 244, 0.45);
  border-radius: 50%;
}

.badge-ring i {
  width: 14px;
  height: 14px;
  border: 4px solid var(--cyan-400);
  border-radius: 50%;
}

.journey-badge div {
  display: flex;
  flex-direction: column;
}

.journey-badge strong {
  font-size: 13px;
}

.journey-badge small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.journey-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.journey-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.journey-steps li > span {
  color: var(--cyan-400);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.journey-steps li div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.journey-steps small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.trust-section {
  background: #fff;
}

.trust-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.trust-heading h2 {
  max-width: 680px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.trust-grid article {
  min-height: 260px;
  padding: 36px 30px;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--blue-600);
  background: #eaf1ff;
  font-size: 15px;
  font-weight: 800;
}

.trust-grid article:nth-child(2) .trust-symbol {
  color: #008eaa;
  background: #e4faff;
}

.trust-grid article:nth-child(3) .trust-symbol {
  color: #15967d;
  background: #e3f8f3;
}

.trust-grid article:nth-child(4) .trust-symbol {
  color: #d88218;
  background: #fff3df;
}

.trust-grid h3 {
  margin: 56px 0 12px;
  font-size: 18px;
}

.trust-grid p {
  margin: 0;
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.8;
}

.operation-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 72px;
  background:
    linear-gradient(rgba(11, 91, 190, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 91, 190, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 88% 18%, rgba(44, 207, 226, 0.15), transparent 30%),
    linear-gradient(135deg, #edf4ff 0%, #f4f8ff 48%, #ebfbfa 100%);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.operation-pattern {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  top: -170px;
  border: 80px solid rgba(10, 111, 196, 0.055);
  border-radius: 50%;
}

.operation-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 78px;
}

.operation-copy h2 {
  margin: 14px 0 20px;
  color: var(--navy-950);
  font-size: clamp(44px, 5.2vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.operation-copy h2 em {
  color: transparent;
  background: linear-gradient(90deg, #176ff2 0%, #0b91d0 52%, #12bfa4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.operation-copy > p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.9;
}

.operation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.operation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(23, 111, 242, 0.72);
  border-radius: 12px;
  color: #176ff2;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.operation-button:hover {
  box-shadow: 0 12px 28px rgba(23, 111, 242, 0.2);
  transform: translateY(-2px);
}

.operation-button.is-primary {
  color: #fff;
  background: linear-gradient(115deg, #176ff2, #078fbf);
}

.operation-metrics {
  display: flex;
  gap: clamp(28px, 5vw, 62px);
  margin-top: 50px;
}

.operation-metrics div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.operation-metrics strong {
  color: #0b78d0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 29px;
  line-height: 1;
}

.operation-metrics span {
  color: var(--ink-500);
  font-size: 12px;
}

.operation-dashboard {
  overflow: hidden;
  border: 1px solid rgba(7, 29, 69, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(22, 76, 145, 0.15);
}

.dashboard-top {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 8px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: #f7f8fb;
}

.dashboard-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5c5c;
}

.dashboard-top i:nth-child(2) {
  background: #ff9f1a;
}

.dashboard-top i:nth-child(3) {
  background: #28c968;
}

.dashboard-top span {
  margin-left: auto;
  color: var(--ink-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dashboard-chart {
  position: relative;
  height: 235px;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 111, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 111, 242, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}

.chart-line {
  position: absolute;
  width: 115%;
  height: 160px;
  left: -8%;
  bottom: -50px;
  border-top: 4px solid var(--blue-500);
  border-radius: 50% 54% 0 0;
  transform: rotate(-13deg);
}

.chart-area {
  position: absolute;
  width: 120%;
  height: 150px;
  left: -10%;
  bottom: -52px;
  border-radius: 50% 54% 0 0;
  background: linear-gradient(rgba(23, 111, 242, 0.34), rgba(23, 111, 242, 0.02));
  transform: rotate(-13deg);
}

.chart-point {
  position: absolute;
  z-index: 2;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(23, 111, 242, 0.15);
}

.point-one { left: 11%; bottom: 44px; }
.point-two { left: 36%; bottom: 83px; }
.point-three { left: 62%; bottom: 126px; }
.point-four { right: 8%; bottom: 166px; }

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 26px 28px 30px;
}

.dashboard-stats div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dashboard-stats div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.dashboard-stats strong {
  color: var(--navy-950);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 26px;
}

.dashboard-stats span {
  color: var(--ink-500);
  font-size: 11px;
}

.hosting-offer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
  margin-top: 34px;
  padding: 30px 36px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  border: 1px solid rgba(89, 219, 255, 0.24);
  background:
    radial-gradient(circle at 82% 20%, rgba(67, 224, 255, 0.24), transparent 32%),
    linear-gradient(115deg, #0b4bbb 0%, #136fd5 52%, #0797b4 100%);
  box-shadow: 0 20px 46px rgba(2, 62, 153, 0.3);
}

.hosting-offer > div:first-child > span {
  display: inline-block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hosting-offer h3 {
  margin: 0;
  font-size: 25px;
}

.hosting-offer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.hosting-price {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.hosting-price del {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.hosting-price strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 42px;
  line-height: 1.1;
}

.hosting-price small {
  margin-right: 5px;
  font-size: 17px;
}

.hosting-price em {
  font-family: inherit;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
}

.hosting-offer > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  color: #075bb5;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hero-offer {
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
}

.hero-offer::after {
  position: absolute;
  content: "AI";
  right: 116px;
  bottom: -26px;
  color: rgba(255, 255, 255, 0.06);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 88px;
  font-weight: 900;
  pointer-events: none;
}

.hero-offer h3 {
  font-size: 18px;
}

.hero-offer p {
  margin-top: 5px;
  font-size: 10px;
}

.hero-offer .hosting-price strong {
  font-size: 31px;
}

.hero-offer .hosting-price small {
  font-size: 14px;
}

.hero-offer .hosting-price em {
  font-size: 14px;
}

.hero-offer > a {
  position: relative;
  z-index: 1;
  min-width: 94px;
  height: 42px;
  padding: 0 16px;
}

.feature-section {
  background: var(--canvas);
}

.feature-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.feature-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.24;
  letter-spacing: -0.035em;
}

.feature-heading p {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.9;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.feature-card:hover {
  border-color: #cbd9f2;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.feature-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon-blue {
  color: var(--blue-600);
  background: #e9f1ff;
}

.feature-icon-cyan {
  color: #008eaa;
  background: #e4faff;
}

.feature-icon-mint {
  color: #15967d;
  background: #e3f8f3;
}

.feature-icon-dark {
  color: var(--cyan-400);
  background: rgba(53, 216, 244, 0.12);
}

.feature-kicker {
  margin-top: 42px;
  color: var(--blue-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.feature-card h3 {
  margin: 12px 0;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.8;
}

.feature-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 30px 0 0;
  list-style: none;
}

.feature-card li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-700);
  font-size: 12px;
}

.feature-card li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: 0;
  top: 5px;
  border-radius: 2px;
  background: var(--blue-500);
}

.feature-card-dark {
  border-color: var(--navy-900);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(53, 216, 244, 0.16), transparent 44%),
    var(--navy-900);
}

.feature-card-dark:hover {
  border-color: var(--navy-800);
  box-shadow: 0 20px 48px rgba(3, 19, 47, 0.2);
}

.feature-card-dark .feature-kicker {
  color: var(--cyan-400);
}

.feature-card-dark p,
.feature-card-dark li {
  color: rgba(255, 255, 255, 0.6);
}

.feature-card-dark li::before {
  background: var(--cyan-400);
}

.about-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 48%, rgba(23, 111, 242, 0.26), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.about-section::before {
  position: absolute;
  content: "";
  width: 460px;
  height: 460px;
  left: -240px;
  bottom: -260px;
  border: 1px solid rgba(53, 216, 244, 0.14);
  border-radius: 50%;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 88px;
}

.about-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.about-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1.95;
}

.about-copy .about-lead {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-metrics div {
  display: flex;
  flex-direction: column;
  padding: 22px 0;
}

.about-metrics strong {
  color: var(--cyan-400);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 30px;
  line-height: 1;
}

.about-metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.about-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 40px 40px;
}

.about-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(53, 216, 244, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.about-orbit-outer {
  width: 390px;
  height: 390px;
}

.about-orbit-inner {
  width: 240px;
  height: 240px;
  border-color: rgba(255, 255, 255, 0.12);
}

.about-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.74);
  background: rgba(5, 25, 58, 0.88);
  box-shadow: 0 16px 36px rgba(0, 8, 28, 0.22);
  backdrop-filter: blur(10px);
}

.about-node i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--cyan-400);
  background: rgba(53, 216, 244, 0.1);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.about-node > span {
  font-size: 12px;
  font-weight: 700;
}

.about-node-center {
  left: 50%;
  top: 50%;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  width: 164px;
  padding: 24px 20px;
  border-color: rgba(53, 216, 244, 0.3);
  border-radius: 24px;
  color: #fff;
  background: rgba(7, 29, 69, 0.94);
  transform: translate(-50%, -50%);
}

.about-node-center img {
  margin-bottom: 7px;
  border-radius: 15px;
}

.about-node-center strong {
  font-size: 17px;
}

.about-node-center span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 400;
}

.about-node-mall {
  left: 8%;
  top: 22%;
}

.about-node-ai {
  right: 8%;
  top: 20%;
}

.about-node-service {
  right: 12%;
  bottom: 15%;
}

.about-signal {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(53, 216, 244, 0.08);
}

.about-signal-one {
  left: 23%;
  bottom: 24%;
}

.about-signal-two {
  right: 29%;
  top: 13%;
}

.about-signal-three {
  right: 8%;
  top: 52%;
}

.closing-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(23, 111, 242, 0.34), transparent 42%),
    var(--navy-900);
}

.closing-grid {
  opacity: 0.1;
  mask-image: radial-gradient(circle at center, #000 0, transparent 70%);
}

.closing-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-inner img {
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(28, 121, 255, 0.28);
}

.closing-inner > span {
  margin-top: 22px;
  color: var(--cyan-400);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.closing-inner h2 {
  margin: 22px 0 16px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.closing-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.button-light {
  margin-top: 30px;
  color: var(--navy-900);
  background: #fff;
}

.site-footer {
  padding: 32px 0;
  color: #fff;
  background: #020e24;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.2fr auto;
  align-items: center;
  gap: 56px;
}

.footer-brand img {
  border-radius: 9px;
}

.footer-brand strong {
  font-size: 16px;
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-links div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

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

.footer-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 8px;
}

.footer-meta p {
  margin: 0;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 0.82fr;
    gap: 24px;
  }

  .stage-caption {
    display: none;
  }

  .capability-card {
    grid-template-columns: 70px 1fr;
  }

  .capability-card ul {
    grid-column: 2;
  }

  .journey-grid {
    gap: 60px;
  }

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

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

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .about-grid {
    gap: 48px;
  }

  .about-visual {
    min-height: 440px;
  }

  .operation-inner {
    gap: 38px;
  }

  .operation-actions {
    max-width: 560px;
  }

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

  .footer-links {
    order: 3;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    height: 68px;
    background: rgba(3, 19, 47, 0.92);
    backdrop-filter: blur(16px);
  }

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

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 16px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(3, 19, 47, 0.98);
    box-shadow: 0 20px 50px rgba(0, 10, 30, 0.28);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    padding: 16px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 0 0;
    border-left: 0;
  }

  .nav-action {
    width: 100%;
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 72px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-highlights {
    justify-content: space-between;
    gap: 10px;
  }

  .hero-highlights li {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .product-stage {
    min-height: 560px;
    margin-top: 36px;
  }

  .product-stage::before {
    width: 340px;
    height: 340px;
    top: 98px;
  }

  .phone {
    width: 276px;
    transform: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading,
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .capability-card {
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 30px 22px;
  }

  .capability-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .capability-icon svg {
    width: 26px;
  }

  .capability-copy h3 {
    font-size: 22px;
  }

  .capability-card ul {
    grid-column: 1 / -1;
    padding-left: 78px;
  }

  .journey-steps li div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .trust-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .trust-grid article,
  .trust-grid article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .trust-grid h3 {
    margin-top: 30px;
  }

  .feature-heading {
    margin-bottom: 40px;
    text-align: left;
  }

  .feature-heading p {
    margin-left: 0;
  }

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

  .operation-inner {
    grid-template-columns: 1fr;
  }

  .operation-dashboard {
    max-width: 560px;
  }

  .hosting-offer {
    grid-template-columns: 1fr auto;
    gap: 22px;
    margin-top: 34px;
  }

  .hosting-offer > a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-offer {
    padding: 18px;
  }

  .feature-card {
    min-height: 340px;
  }

  .about-grid {
    gap: 48px;
  }

  .about-visual {
    min-height: 430px;
  }

  .about-orbit-outer {
    width: 340px;
    height: 340px;
  }

  .about-node-mall {
    left: 5%;
  }

  .about-node-ai {
    right: 5%;
  }

  .about-node-service {
    right: 6%;
  }

  .closing-section {
    padding: 84px 0;
  }

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

  .footer-links {
    order: initial;
    width: 100%;
  }

  .footer-meta {
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .capability-card ul {
    grid-template-columns: 1fr;
  }

  .journey-steps li {
    grid-template-columns: 44px 1fr;
  }

  .about-visual {
    min-height: 390px;
  }

  .about-orbit-outer {
    width: 300px;
    height: 300px;
  }

  .about-orbit-inner {
    width: 210px;
    height: 210px;
  }

  .about-node {
    padding: 9px 10px;
  }

  .about-node i {
    width: 28px;
    height: 28px;
  }

  .about-node-center {
    width: 144px;
    padding: 20px 16px;
  }

  .about-node-center img {
    width: 44px;
    height: 44px;
  }

  .operation-copy h2 {
    font-size: 39px;
  }

  .operation-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .operation-button {
    min-width: 0;
    padding: 0 10px;
  }

  .operation-button:last-child {
    grid-column: 1 / -1;
  }

  .operation-metrics {
    justify-content: space-between;
    gap: 10px;
  }

  .operation-metrics strong {
    font-size: 22px;
  }

  .hosting-offer {
    grid-template-columns: 1fr;
    padding: 26px 24px;
  }

  .hero-offer {
    gap: 16px;
    padding: 18px;
  }

  .hosting-price {
    align-items: flex-start;
  }

  .hosting-offer > a {
    grid-column: auto;
  }

  .footer-links {
    gap: 18px;
  }
}

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

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

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