:root {
  --bg: #fff6f8;
  --bg-warm: #fffaf5;
  --surface: #fffefe;
  --surface-soft: rgba(255, 255, 255, 0.88);
  --pink-50: #fff0f4;
  --pink-100: #ffe1e8;
  --pink-200: #ffc9d5;
  --pink-300: #ff9caf;
  --pink-500: #ee5575;
  --pink-600: #d83f64;
  --brown-700: #5a281d;
  --ink: #3b2624;
  --muted: #7f6664;
  --line: #f7ccd4;
  --mint: #75d996;
  --mint-soft: #ecfff2;
  --amber: #f2a936;
  --red: #ee6d7e;
  --radius-card: 8px;
  --shadow-soft: 0 18px 45px rgba(224, 92, 116, 0.16);
  --shadow-tight: 0 10px 26px rgba(224, 92, 116, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: "HarmonyOS Sans SC", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 247, 249, 0.98) 0%, rgba(255, 255, 255, 0.96) 55%, rgba(255, 235, 241, 0.96) 100%),
    url("data:image/svg+xml,%3Csvg width='112' height='112' viewBox='0 0 112 112' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ee5575' fill-opacity='0.055'%3E%3Ccircle cx='24' cy='30' r='5'/%3E%3Ccircle cx='39' cy='24' r='5'/%3E%3Ccircle cx='52' cy='34' r='5'/%3E%3Cpath d='M29 49c2-9 18-9 22 0 2 7-3 13-11 13s-13-6-11-13z'/%3E%3Cpath d='M83 24c6-8 18 2 8 11l-8 7-8-7c-10-9 2-19 8-11z'/%3E%3C/g%3E%3C/svg%3E");
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 3% 32%, rgba(238, 85, 117, 0.08) 0 22px, transparent 23px),
    radial-gradient(circle at 96% 24%, rgba(238, 85, 117, 0.06) 0 28px, transparent 29px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 9px, rgba(238, 85, 117, 0.02) 10px);
}

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

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

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

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(238, 85, 117, 0.38);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--pink-600);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.motion-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.motion-token {
  position: absolute;
  width: 28px;
  height: 28px;
  color: var(--pink-300);
  opacity: 0.36;
  animation: tokenDrift 12s ease-in-out infinite;
}

.token-paw {
  background:
    radial-gradient(circle at 50% 78%, currentColor 0 6px, transparent 7px),
    radial-gradient(circle at 24% 30%, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 52% 18%, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 78% 34%, currentColor 0 4px, transparent 5px);
}

.token-heart::before {
  position: absolute;
  inset: 7px 5px 5px;
  content: "";
  background: currentColor;
  transform: rotate(-45deg);
}

.token-heart::after {
  position: absolute;
  inset: 2px 0 0;
  content: "";
  background:
    radial-gradient(circle at 35% 35%, currentColor 0 8px, transparent 9px),
    radial-gradient(circle at 65% 35%, currentColor 0 8px, transparent 9px);
}

.token-a {
  top: 19%;
  left: 5%;
  animation-delay: -1s;
}

.token-b {
  top: 27%;
  right: 9%;
  width: 22px;
  height: 22px;
  color: var(--pink-500);
  animation-delay: -4s;
}

.token-c {
  bottom: 28%;
  left: 51%;
  width: 22px;
  height: 22px;
  animation-delay: -7s;
}

.token-d {
  bottom: 16%;
  right: 22%;
  color: #f7a7b8;
  animation-delay: -10s;
}

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

.site-header {
  position: fixed;
  top: 14px;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 0 24px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), 100%);
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(247, 204, 212, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(14px);
  animation: navDrop 420ms ease-out both;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--pink-600);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(238, 85, 117, 0.12);
}

.brand-mark img {
  width: 38px;
  max-width: none;
}

.brand-text {
  font-size: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.nav-links a {
  min-width: 64px;
  padding: 9px 13px;
  text-align: center;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--pink-600);
  background: var(--pink-50);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 0;
  cursor: pointer;
  user-select: none;
}

.nav-cta {
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(180deg, #f77b94 0%, var(--pink-600) 100%);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(216, 63, 100, 0.28);
}

.paw-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.paw-icon::before,
.paw-icon::after {
  position: absolute;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.paw-icon::before {
  right: 3px;
  bottom: 2px;
  width: 10px;
  height: 8px;
}

.paw-icon::after {
  top: 2px;
  left: 2px;
  width: 5px;
  height: 5px;
  box-shadow: 7px -1px 0 currentColor, 11px 5px 0 currentColor, 2px 9px 0 currentColor;
}

.doc-icon {
  position: relative;
  width: 17px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.doc-icon::before,
.doc-icon::after {
  position: absolute;
  left: 3px;
  width: 7px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.doc-icon::before {
  top: 6px;
}

.doc-icon::after {
  top: 12px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 34px;
  align-items: center;
  min-height: 540px;
  padding: 96px 0 28px;
}

.hero::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  z-index: 0;
  width: 100vw;
  height: 22px;
  content: "";
  background:
    radial-gradient(circle at 12px 0, transparent 12px, rgba(255, 211, 221, 0.85) 13px, rgba(255, 211, 221, 0.85) 16px, transparent 17px) repeat-x;
  background-size: 28px 22px;
  transform: translateX(50%);
}

.cat-runner-track {
  position: absolute;
  right: 0;
  bottom: -42px;
  left: 0;
  z-index: 1;
  display: none;
  height: 122px;
  pointer-events: none;
}

.cat-runner {
  position: absolute;
  bottom: 0;
  left: -230px;
  width: 181px;
  height: 131px;
  background-image: url("assets/11.png?v=20260427-ai-relay2");
  background-repeat: no-repeat;
  background-size: 1086px 131px;
  filter: drop-shadow(0 10px 12px rgba(216, 63, 100, 0.14));
  animation:
    catSprite 720ms steps(6) infinite,
    catTravel 16s linear 2.2s infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 18px;
}

.hero-badge,
.system-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 16px;
  color: var(--brown-700);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(238, 85, 117, 0.08);
}

.bell-dot {
  width: 17px;
  height: 17px;
  background:
    radial-gradient(circle at 50% 83%, var(--amber) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 52%, #ffd36c 0 7px, transparent 8px);
  border: 1px solid rgba(184, 114, 18, 0.24);
  border-radius: 999px 999px 6px 6px;
}

.hero h1 {
  max-width: 580px;
  margin: 20px 0 16px;
  color: var(--pink-600);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.16;
  text-shadow: 0 4px 0 rgba(255, 255, 255, 0.76);
}

.hero h1 span {
  display: block;
  color: var(--brown-700);
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.btn {
  min-width: 154px;
  padding: 0 26px;
  font-weight: 900;
  border-radius: 14px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #f77b94 0%, var(--pink-600) 100%);
  box-shadow: 0 14px 24px rgba(216, 63, 100, 0.3);
}

.btn-secondary {
  color: var(--pink-600);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 12px 22px rgba(238, 85, 117, 0.08);
}

.system-pill {
  color: var(--muted);
  font-size: 13px;
}

.pill-arrow {
  color: var(--brown-700);
  font-size: 24px;
  line-height: 0;
}

.online-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(117, 217, 150, 0.18), 0 0 12px rgba(117, 217, 150, 0.86);
}

.red-dot {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 109, 126, 0.16), 0 0 12px rgba(238, 109, 126, 0.52);
}

.amber-dot {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(242, 169, 54, 0.16), 0 0 12px rgba(242, 169, 54, 0.52);
}

.hero-cat-yarn {
  position: absolute;
  bottom: -168px;
  left: -178px;
  width: 230px;
  transform: rotate(-3deg);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.console-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid rgba(255, 195, 209, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 10px 18px;
  background: linear-gradient(180deg, rgba(255, 247, 249, 0.98), rgba(255, 255, 255, 0.86));
  border-bottom: 1px solid var(--line);
}

.console-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  color: var(--pink-600);
  font-weight: 900;
}

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

.console-brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.api-chip,
.select-chip {
  flex: 0 0 auto;
  padding: 7px 11px;
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 900;
  background: var(--pink-50);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.console-body {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  min-height: 306px;
}

.console-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 10px;
  background: linear-gradient(180deg, rgba(255, 240, 244, 0.82), rgba(255, 255, 255, 0.68));
  border-right: 1px solid var(--line);
}

.console-menu a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  padding: 5px 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  border-radius: 8px;
}

.console-menu a:hover,
.console-menu a.is-selected {
  color: var(--pink-600);
  background: #fff;
}

.console-menu img {
  width: 88%;
  margin-top: auto;
}

.menu-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: currentColor;
}

.icon-home {
  border: 2px solid currentColor;
  border-radius: 5px;
}

.icon-key::before {
  position: absolute;
  top: 5px;
  left: 1px;
  width: 12px;
  height: 4px;
  content: "";
  border: 2px solid currentColor;
  border-left-width: 5px;
  border-radius: 999px;
}

.icon-chart {
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.icon-chart::before {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 2px;
  height: 8px;
  content: "";
  background: linear-gradient(135deg, transparent 0 35%, currentColor 36% 44%, transparent 45% 55%, currentColor 56% 64%, transparent 65%);
}

.icon-list {
  background: linear-gradient(currentColor 0 0) 0 2px / 14px 2px no-repeat,
    linear-gradient(currentColor 0 0) 0 7px / 14px 2px no-repeat,
    linear-gradient(currentColor 0 0) 0 12px / 14px 2px no-repeat;
}

.icon-coin {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-gear {
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -5px 0 -3px currentColor, 0 5px 0 -3px currentColor, 5px 0 0 -3px currentColor, -5px 0 0 -3px currentColor;
}

.console-content {
  min-width: 0;
  padding: 12px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 10px;
}

.metric-tile,
.chart-panel,
.node-panel,
.console-notice,
.feature-card,
.price-card,
.promo-card,
.docs-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 24px rgba(224, 92, 116, 0.08);
}

.metric-tile {
  position: relative;
  overflow: hidden;
  min-height: 68px;
  padding: 10px;
}

.metric-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.72) 48%, transparent 58%);
  transform: translateX(-135%);
  animation: tileGlint 6s ease-in-out infinite;
}

.metric-tile span,
.metric-tile small,
.panel-title span,
.panel-title a,
.section-kicker,
.plan-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.metric-tile strong {
  display: block;
  margin: 5px 0 1px;
  color: var(--brown-700);
  font-size: 18px;
  line-height: 1.2;
}

.metric-tile strong em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.metric-tile small {
  color: #67bd80;
}

.mini-bars {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 21px;
  background:
    linear-gradient(currentColor 0 0) 0 12px / 5px 12px no-repeat,
    linear-gradient(currentColor 0 0) 10px 8px / 5px 16px no-repeat,
    linear-gradient(currentColor 0 0) 20px 3px / 5px 21px no-repeat,
    linear-gradient(currentColor 0 0) 30px 0 / 5px 24px no-repeat;
  border-radius: 6px;
}

.pink-bars {
  color: var(--pink-500);
}

.green-bars {
  color: #67c881;
}

.status-seal {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 27px;
  height: 27px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.08);
}

.status-seal::before {
  position: absolute;
  top: 9px;
  left: 8px;
  width: 12px;
  height: 7px;
  content: "";
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}

.coin-stack {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 25px;
  height: 25px;
  background: radial-gradient(circle, #ffd365 0 37%, #ffab2f 38% 70%, #ef8c1f 71%);
  border-radius: 50%;
}

.coin-stack::after {
  position: absolute;
  right: -8px;
  bottom: -1px;
  width: 22px;
  height: 22px;
  content: "";
  background: radial-gradient(circle, #ffe08b 0 35%, #f7a936 36% 72%, #e88f1f 73%);
  border-radius: 50%;
}

.monitor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, 0.9fr);
  gap: 9px;
}

.chart-panel,
.node-panel {
  min-height: 152px;
  padding: 11px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.panel-title h2 {
  margin-bottom: 0;
  color: var(--brown-700);
  font-size: 14px;
}

.panel-title a {
  color: var(--pink-600);
}

.traffic-chart {
  width: 100%;
  height: 106px;
}

.chart-grid path {
  fill: none;
  stroke: rgba(127, 102, 100, 0.12);
  stroke-width: 1;
}

.chart-area {
  fill: url(#chartFill);
  opacity: 1;
  animation: chartBreathe 3.4s ease-in-out infinite;
}

.chart-line {
  fill: none;
  stroke: var(--pink-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  animation: lineGlow 2.8s ease-in-out infinite;
}

.chart-points circle {
  fill: #fff;
  stroke: var(--pink-500);
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  animation: pointPulse 2.2s ease-in-out infinite;
}

.chart-labels {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.chart-points circle:nth-child(2) {
  animation-delay: 120ms;
}

.chart-points circle:nth-child(3) {
  animation-delay: 240ms;
}

.chart-points circle:nth-child(4) {
  animation-delay: 360ms;
}

.chart-points circle:nth-child(5) {
  animation-delay: 480ms;
}

.chart-points circle:nth-child(6) {
  animation-delay: 600ms;
}

.chart-points circle:nth-child(7) {
  animation-delay: 720ms;
}

.node-list {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.node-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  color: var(--muted);
  font-size: 12px;
}

.node-list span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 7px;
  white-space: nowrap;
}

.node-list small {
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.node-list strong {
  padding: 2px 7px;
  color: #56b96f;
  font-size: 12px;
  background: var(--mint-soft);
  border-radius: 999px;
}

.console-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 9px;
  padding: 7px 12px;
  color: var(--brown-700);
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(90deg, rgba(255, 238, 242, 0.98), rgba(255, 255, 255, 0.9));
}

.notice-badge {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--pink-500);
  background:
    radial-gradient(circle at 50% 78%, currentColor 0 8px, transparent 9px),
    radial-gradient(circle at 27% 30%, currentColor 0 5px, transparent 6px),
    radial-gradient(circle at 52% 18%, currentColor 0 5px, transparent 6px),
    radial-gradient(circle at 75% 34%, currentColor 0 5px, transparent 6px);
}

.fish-bone {
  position: relative;
  width: 56px;
  height: 20px;
  flex: 0 0 auto;
  color: #b28a82;
}

.fish-bone::before {
  position: absolute;
  top: 9px;
  right: 8px;
  left: 12px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  box-shadow: 10px -6px 0 -1px currentColor, 18px 6px 0 -1px currentColor;
}

.fish-bone::after {
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 14px;
  content: "";
  border: 3px solid currentColor;
  border-right: 0;
  transform: rotate(45deg);
}

.notice-arrow {
  margin-left: auto;
  color: var(--pink-600);
  font-size: 24px;
  line-height: 1;
}

.sleeping-cat {
  position: absolute;
  top: -54px;
  right: 92px;
  z-index: 3;
  width: 142px;
  animation: catFloat 4.5s ease-in-out infinite;
}

.cat-tower {
  position: absolute;
  right: -132px;
  bottom: -28px;
  z-index: 1;
  width: 158px;
  animation: catFloat 5.2s ease-in-out infinite;
}

.features {
  padding: 26px 0 14px;
}

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

.feature-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 104px;
  padding: 13px;
  transition: transform 160ms ease, box-shadow 160ms ease;
  transform: translateY(0) rotate(var(--feature-tilt, 0deg));
}

.feature-card:nth-child(1) {
  --feature-tilt: -0.35deg;
}

.feature-card:nth-child(2) {
  --feature-tilt: 0.25deg;
}

.feature-card:nth-child(3) {
  --feature-tilt: -0.2deg;
}

.feature-card:nth-child(4) {
  --feature-tilt: 0.35deg;
}

.feature-card:hover,
.price-card:hover,
.promo-card:hover {
  transform: translateY(-4px) rotate(0deg);
  box-shadow: var(--shadow-soft);
}

.feature-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.feature-card h3,
.price-card h3 {
  margin-bottom: 3px;
  color: var(--brown-700);
  font-size: 17px;
}

.feature-card p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.feature-card a {
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 900;
}

.pricing {
  position: relative;
  padding: 18px 0 14px;
}

.pricing::before {
  position: absolute;
  top: -34px;
  left: -36px;
  width: 132px;
  height: 132px;
  content: "";
  background: url("assets/8.png") center / contain no-repeat;
  pointer-events: none;
}

.pricing-heading {
  align-self: center;
  margin: 0;
  padding-right: 8px;
}

.pricing-heading h2,
.docs-card h2 {
  margin-bottom: 4px;
  color: var(--brown-700);
  font-size: 25px;
  line-height: 1.25;
}

.pricing-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--pink-600);
}

.section-kicker::before {
  width: 18px;
  height: 18px;
  content: "";
  background:
    radial-gradient(circle at 50% 82%, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 25% 28%, currentColor 0 3px, transparent 4px),
    radial-gradient(circle at 54% 18%, currentColor 0 3px, transparent 4px),
    radial-gradient(circle at 75% 35%, currentColor 0 3px, transparent 4px);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 190px repeat(4, minmax(134px, 1fr)) minmax(150px, 0.85fr);
  gap: 14px;
  align-items: stretch;
}

.price-card,
.promo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 174px;
  padding: 12px 13px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.price-card-featured {
  border-color: rgba(238, 85, 117, 0.5);
  background: linear-gradient(180deg, #fff 0%, #fff2f5 100%);
  box-shadow: 0 18px 42px rgba(238, 85, 117, 0.17);
}

.recommend-badge {
  position: absolute;
  top: -14px;
  right: 10px;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: var(--pink-500);
  border-radius: 7px;
  box-shadow: 0 8px 16px rgba(216, 63, 100, 0.2);
}

.plan-label {
  color: var(--brown-700);
}

.plan-price {
  margin: 2px 0 6px;
  color: var(--pink-600);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.plan-price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.plan-illustration {
  position: absolute;
  top: 22px;
  right: 12px;
  width: 46px;
  height: 42px;
  object-fit: contain;
}

.yarn-mark {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 52px;
  height: 52px;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 17px, rgba(90, 40, 29, 0.26) 18px 19px, transparent 20px),
    repeating-linear-gradient(28deg, transparent 0 7px, rgba(90, 40, 29, 0.18) 8px 10px),
    #f69ab0;
  border: 3px solid #e36f8a;
  border-radius: 50%;
}

.yarn-mark::after {
  position: absolute;
  right: -18px;
  bottom: 7px;
  width: 22px;
  height: 3px;
  content: "";
  background: #e36f8a;
  border-radius: 999px;
  transform: rotate(18deg);
}

.plan-fish {
  position: absolute;
  top: 32px;
  right: 14px;
}

.bell-large {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 38px;
  height: 42px;
  background:
    radial-gradient(circle at 50% 89%, #c98119 0 5px, transparent 6px),
    radial-gradient(circle at 50% 18%, #ffd36c 0 6px, transparent 7px),
    linear-gradient(180deg, #ffe596 0%, #f6b43b 70%, #e8951f 100%);
  border: 2px solid rgba(170, 99, 12, 0.35);
  border-radius: 22px 22px 10px 10px;
  transform: rotate(-8deg);
}

.price-card ul {
  display: grid;
  gap: 2px;
  padding: 0;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.35;
  list-style: none;
}

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

.price-card li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--brown-700);
  border-radius: 50%;
}

.card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-top: auto;
  padding: 0 14px;
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.price-card-featured .card-action {
  color: #fff;
  background: var(--pink-600);
  border-color: var(--pink-600);
}

.promo-card {
  align-items: center;
  justify-content: center;
  min-height: 174px;
  padding: 16px;
  color: var(--pink-600);
  text-align: center;
  background: linear-gradient(180deg, #fff7fa 0%, #ffe7ee 100%);
}

.promo-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.promo-card p {
  margin: 4px 0 10px;
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 900;
}

.promo-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: 100%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: var(--pink-600);
  border-radius: 9px;
}

.docs {
  padding: 28px 0 30px;
}

.docs-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 28px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 244, 0.9));
}

.docs-card p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 270px;
  gap: 36px;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 28px;
  color: var(--muted);
}

.site-footer::before {
  position: absolute;
  top: -14px;
  right: 50%;
  width: 100vw;
  height: 22px;
  content: "";
  background:
    radial-gradient(circle at 12px 0, rgba(255, 211, 221, 0.8) 0 12px, transparent 13px) repeat-x;
  background-size: 28px 22px;
  transform: translateX(50%);
}

.footer-brand {
  margin-bottom: 8px;
  color: var(--pink-600);
  font-size: 20px;
}

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

.footer-brand-block p {
  margin-bottom: 0;
  font-size: 13px;
}

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

.footer-columns h2 {
  margin-bottom: 9px;
  color: var(--brown-700);
  font-size: 14px;
}

.footer-columns a {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-columns a:hover {
  color: var(--pink-600);
}

.footer-mascot {
  position: relative;
  min-height: 120px;
}

.footer-mascot .speech {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  color: var(--brown-700);
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.footer-mascot img {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 205px;
}

.quick-actions {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.quick-actions a,
.quick-actions button {
  display: grid;
  place-items: center;
  width: 58px;
  min-height: 58px;
  padding: 6px 4px;
  color: var(--brown-700);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-tight);
  cursor: pointer;
}

.quick-actions a:hover,
.quick-actions button:hover {
  color: #fff;
  background: var(--pink-600);
}

.quick-actions img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.quick-gear,
.quick-list {
  position: relative;
  width: 23px;
  height: 23px;
  color: currentColor;
}

.quick-gear {
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -8px 0 -6px currentColor, 0 8px 0 -6px currentColor, 8px 0 0 -6px currentColor, -8px 0 0 -6px currentColor;
}

.quick-list {
  background:
    linear-gradient(currentColor 0 0) 2px 4px / 18px 3px no-repeat,
    linear-gradient(currentColor 0 0) 2px 10px / 18px 3px no-repeat,
    linear-gradient(currentColor 0 0) 2px 16px / 18px 3px no-repeat;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.quick-up {
  color: currentColor;
  font-size: 28px;
  line-height: 1;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  max-width: min(340px, calc(100vw - 48px));
  padding: 12px 16px;
  color: #fff;
  font-weight: 900;
  background: var(--brown-700);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(90, 40, 29, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

.reveal.is-visible {
  transition: opacity 420ms ease, transform 420ms ease;
}

@keyframes catFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes navDrop {
  from {
    transform: translateY(-12px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes tokenDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  45% {
    transform: translate3d(10px, -18px, 0) rotate(8deg);
  }

  70% {
    transform: translate3d(-8px, -10px, 0) rotate(-6deg);
  }
}

@keyframes catSprite {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1086px 0;
  }
}

@keyframes catTravel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(50vw + 140px));
  }
}

@keyframes tileGlint {
  0%,
  64% {
    transform: translateX(-135%);
  }

  78%,
  100% {
    transform: translateX(135%);
  }
}

@keyframes chartBreathe {
  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes lineGlow {
  0%,
  100% {
    stroke-width: 4;
    filter: drop-shadow(0 0 0 rgba(238, 85, 117, 0));
  }

  50% {
    stroke-width: 4.8;
    filter: drop-shadow(0 0 5px rgba(238, 85, 117, 0.34));
  }
}

@keyframes pointPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.28);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 118px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-cat-yarn {
    right: 0;
    bottom: -116px;
    left: auto;
    width: 186px;
  }

  .cat-tower {
    right: -26px;
  }

  .cat-runner-track {
    bottom: -6px;
  }

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

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

  .promo-card {
    min-height: 190px;
  }

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

  .footer-mascot {
    min-height: 150px;
  }
}

@media (max-width: 880px) {
  .site-header {
    top: 8px;
    padding: 0 12px;
  }

  .nav-bar {
    min-height: 60px;
    border-radius: 18px;
  }

  .brand-text {
    font-size: 19px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 15px;
  }

  .section {
    width: min(100% - 28px, var(--max-width));
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .hero-cat-yarn,
  .sleeping-cat,
  .cat-tower,
  .cat-runner-track,
  .motion-field {
    display: none;
  }

  .console-body {
    grid-template-columns: 1fr;
  }

  .console-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .console-menu img {
    display: none;
  }

  .metric-grid,
  .monitor-grid {
    grid-template-columns: 1fr;
  }

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

  .docs-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .quick-actions {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 18px;
  }

  .hero-badge,
  .system-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  .btn {
    width: 100%;
  }

  .console-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .node-list li {
    grid-template-columns: 1fr auto;
  }

  .node-list small {
    display: none;
  }

  .feature-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .feature-card img {
    width: 78px;
    height: 78px;
  }

  .pricing::before {
    display: none;
  }

  .plan-price {
    font-size: 28px;
  }

  .footer-mascot img {
    position: static;
    margin: 12px auto -10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .cat-runner-track,
  .motion-field {
    display: none;
  }

  .console-window {
    transform: none;
  }
}

