/* ==========================================================================
   index2.css — 糖糕云官网落地页（index2.html）专属样式
   依赖：base.css → layout.css → components.css → utilities.css（已由 index2.html 先行引入）
   ========================================================================== */

/* ── Design tokens ─────────────────────────────────────────────────────── */
:root {
  --brand: #229670;
  --brand-dark: #17684f;
  --brand-strong: #0f5b43;
  --brand-light: #dff5ee;
  --brand-soft: #eaf8f4;
  --ink: #13211d;
  --muted: #64736d;
  --line: #d8ebe5;
  --surface: #ffffff;
  --surface-soft: #f6fbf9;
  --shadow: 0 18px 45px rgba(34, 150, 112, .12);
  --shadow-soft: 0 10px 28px rgba(34, 150, 112, .08);
  --radius: 18px;
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  color: var(--ink);
  background: #fff;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(38, 202, 153, .16), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(158, 236, 211, .26), transparent 30%),
    linear-gradient(180deg, #f5fffb 0%, #fff 36%, #f7fcfa 100%);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin: 0; }
svg { display: block; }

.page {
  overflow-x: clip;
  padding-top: 0;
}

/* ── Container ──────────────────────────────────────────────────────────── */
.page .container {
  width: min(1680px, calc(100% - 48px));
  max-width: 1680px;
  margin: 0 auto;
}

/* ── Topbar / Nav ───────────────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 62px;
  border-bottom: 1px solid rgba(207, 232, 224, .75);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 34px rgba(15, 91, 67, .08);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  backdrop-filter: saturate(160%) blur(22px);
}

.topbar .container {
  width: calc(100% - 10px);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  margin-left: 10px;
  margin-right: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 118px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 1 auto;
  margin-left: 18px;
  gap: 28px;
  color: #233933;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: inherit;
  transition: color .18s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--brand-dark); }

.nav-links a.active::after {
  content: none;
}

.nav-search {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 8px;
  width: clamp(190px, 17vw, 280px);
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(20, 132, 100, .24);
  border-radius: 8px;
  background: #f4fbf8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
}

.nav-search .icon-svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
  color: #2ca17c;
  opacity: .9;
  flex-shrink: 0;
}

.nav-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #1c332d;
  font-size: 13px;
  line-height: 1;
}

.nav-search input::placeholder {
  color: #90a39b;
}

.nav-search input::-webkit-search-cancel-button,
.nav-search input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.nav-search:focus-within {
  border-color: rgba(22, 150, 111, .58);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 150, 111, .14);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
  gap: 16px;
}

.nav-login {
  align-self: center;
  color: #1f322d;
  font-size: 14px;
  font-weight: 600;
  transition: color .18s ease;
}

.nav-login:hover {
  color: var(--brand-dark);
}

.nav-actions .nav-signup {
  align-self: stretch;
  height: 100%;
  min-height: 100%;
  margin-right: 0;
  padding: 0 30px;
  border-radius: 0;
  box-shadow: none;
}

.nav-actions .nav-signup:hover {
  transform: none;
  box-shadow: none;
  filter: brightness(1.04);
}

/* ── Component reveal animation ─────────────────────────────────────────── */
.reveal-item {
  --reveal-delay: 0ms;
  --reveal-duration: 760ms;
  --reveal-ease: cubic-bezier(.22, .61, .36, 1);
  --reveal-x: 0px;
  --reveal-y: 28px;
  --reveal-scale: 1;
  --reveal-rotate: 0deg;
  --reveal-blur: 1.8px;
}

html.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale)) rotate(var(--reveal-rotate));
  filter: blur(var(--reveal-blur));
  transition:
    opacity var(--reveal-duration) ease,
    transform var(--reveal-duration) var(--reveal-ease),
    filter var(--reveal-duration) ease;
  transition-delay: var(--reveal-delay);
}

html.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  filter: blur(0);
}

.reveal-section { --reveal-y: 20px; --reveal-duration: 700ms; --reveal-blur: 1px; }
.reveal-soft { --reveal-y: 16px; --reveal-duration: 660ms; --reveal-blur: 1px; }
.reveal-up { --reveal-y: 30px; }
.reveal-left { --reveal-x: -34px; --reveal-y: 10px; }
.reveal-right { --reveal-x: 34px; --reveal-y: 10px; }
.reveal-pop { --reveal-y: 16px; --reveal-scale: .94; --reveal-duration: 620ms; --reveal-blur: .8px; }
.reveal-zoom { --reveal-y: 20px; --reveal-scale: .9; --reveal-duration: 760ms; --reveal-blur: .8px; }
.reveal-fade { --reveal-x: 0px; --reveal-y: 0px; --reveal-scale: 1; --reveal-blur: 0px; --reveal-duration: 520ms; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: #1d3931;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(10, 112, 83, .06);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10, 112, 83, .13);
}

.btn .icon-svg { width: 22px; height: 22px; }

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #18bf89, #04996b);
  color: #fff;
}

.btn.ghost {
  min-height: 36px;
  padding: 0 16px;
  color: var(--brand-dark);
  background: #f8fffc;
}

/* ── SVG icon base ──────────────────────────────────────────────────────── */
.icon-svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 850px;
  padding: 72px 0 34px;
  background: linear-gradient(180deg, #f4fbf7 0%, #f8fdfa 58%, #ffffff 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 166, 124, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 166, 124, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .58), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url('/themes/web/candycake/assets/img/hero-art-candycake.png?v=20260518f')
    right max(96px, calc((100vw - 1680px) / 2 + 96px)) top 24px / clamp(660px, 50vw, 950px) auto no-repeat;
  pointer-events: none;
  z-index: 0;
  animation: hero-bg-float 5.6s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-bg-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 56px;
  min-height: 545px;
}

.hero-copy { padding-top: 4px; }

.eyebrow {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(22, 185, 133, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(10, 112, 83, .07);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #21c890;
  box-shadow: 0 0 0 5px rgba(33, 200, 144, .12);
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 3.55vw, 72px);
  line-height: 1.12;
  letter-spacing: -.055em;
  text-shadow: 0 10px 35px rgba(9, 87, 66, .08);
}

.title-accent { color: var(--brand-dark); }

.hero-lead {
  max-width: 700px;
  margin-top: 24px;
  color: #4d5f59;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
}

.hero-note {
  max-width: 660px;
  margin-top: 12px;
  color: #768981;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.hero-actions .btn {
  min-width: 168px;
  min-height: 58px;
  border-radius: 12px;
  font-size: 17px;
}

/* ── Metrics bar ────────────────────────────────────────────────────────── */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin-top: 58px;
  border: 1px solid rgba(207, 231, 224, .88);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 40px rgba(25, 105, 82, .08);
  overflow: hidden;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px 22px;
  border-right: 1px solid rgba(207, 231, 224, .78);
  background: transparent;
  box-shadow: none;
}

.metric-card:last-child { border-right: 0; }

.metric-icon,
.mini-icon,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--brand-dark);
  background: linear-gradient(135deg, #effff9, #d9f8ee);
}

.metric-icon {
  color: #037654;
  background: linear-gradient(135deg, #effff9, #d9f8ee);
}

.metric-icon .icon-svg { width: 24px; height: 24px; }

.metric-card strong {
  display: block;
  margin-bottom: 2px;
  color: #182a25;
  font-size: 18px;
  letter-spacing: -.02em;
}

.metric-card span { color: #7d8f88; font-size: 13px; white-space: nowrap; }

/* ── Hero art ───────────────────────────────────────────────────────────── */
.hero-art {
  --hero-art-scale: 1;
  position: relative;
  min-height: 545px;
  perspective: 950px;
  transform-origin: center top;
  transform: translateY(0) scale(var(--hero-art-scale));
  animation: hero-art-float 5.6s ease-in-out infinite;
  will-change: transform;
}

.hero-art > *,
.hero-art::before,
.hero-art::after { display: none; }

@keyframes hero-art-float {
  0%, 100% { transform: translateY(0) scale(var(--hero-art-scale)); }
  50% { transform: translateY(-14px) scale(var(--hero-art-scale)); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; transform: translateY(0); }
  .hero-art {
    animation: none;
    transform: translateY(0) scale(var(--hero-art-scale));
  }
  html.motion-ready .reveal-item,
  html.motion-ready .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    transition-delay: 0ms;
  }
}

.hero-art::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 14px;
  width: 330px;
  height: 250px;
  border: 1px solid rgba(192, 232, 219, .72);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .36)),
    repeating-linear-gradient(0deg, rgba(18, 161, 121, .12) 0 2px, transparent 2px 36px);
  box-shadow: 0 22px 48px rgba(19, 118, 92, .09);
  transform: rotateY(-9deg) rotateX(4deg);
}

.hero-art::after {
  content: "";
  position: absolute;
  left: 155px;
  bottom: 185px;
  width: 54px;
  height: 112px;
  border-radius: 16px 16px 10px 10px;
  background:
    linear-gradient(#7a4d33 0 18%, transparent 18%),
    linear-gradient(90deg, #2872b9 0 28%, #28b981 28% 72%, #2872b9 72%);
  box-shadow: 0 18px 28px rgba(35, 97, 78, .2);
  transform: rotate(-4deg);
}

.art-halo {
  position: absolute;
  inset: 0 20px 20px 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 34%, rgba(19, 188, 134, .34), transparent 24%),
    radial-gradient(circle at 70% 62%, rgba(125, 228, 199, .3), transparent 31%);
  filter: blur(22px);
}

.island {
  position: absolute;
  right: 92px;
  bottom: 62px;
  width: 560px;
  height: 322px;
  transform: rotateX(57deg) rotateZ(-36deg);
  transform-style: preserve-3d;
}

.island-base,
.island-top {
  position: absolute;
  inset: 0;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.28), transparent 32%),
    linear-gradient(135deg, #bff7df, #6ed4ad 52%, #36af82);
  box-shadow: 42px 48px 72px rgba(11, 115, 84, .2);
}

.island-base { transform: translateZ(-38px); filter: brightness(.8) saturate(.9); }
.island-top { border: 1px solid rgba(255, 255, 255, .65); }

.island-top::before,
.island-top::after {
  content: "";
  position: absolute;
  border-radius: 14px;
  background: linear-gradient(135deg, #51c26b, #228a52);
  box-shadow: 0 24px 0 #795036;
  transform: translateZ(30px);
}

.island-top::before { right: 42px; top: 42px; width: 72px; height: 72px; }
.island-top::after  { left: 52px; bottom: 46px; width: 58px; height: 58px; }

.server-stack {
  position: absolute;
  right: 190px;
  bottom: 205px;
  width: 220px;
  height: 196px;
  transform: translateZ(96px) rotateZ(36deg) rotateX(-57deg);
  transform-origin: center bottom;
}

.server {
  position: absolute;
  left: 0;
  right: 0;
  height: 54px;
  border: 1px solid rgba(5, 125, 89, .16);
  border-radius: 17px;
  background: linear-gradient(135deg, #fff, #dcfbef);
  box-shadow: 0 16px 30px rgba(22, 118, 91, .15);
}

.server:nth-child(1) { bottom: 0; }
.server:nth-child(2) { bottom: 48px; transform: translateX(8px); }
.server:nth-child(3) { bottom: 96px; transform: translateX(16px); }

.server::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  width: 106px;
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, #15bd87, #9cefd2);
  box-shadow: 0 14px 0 rgba(13, 170, 122, .14);
}

.server::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #13bd85;
  box-shadow: -18px 0 0 #b6efd8;
}

.cloud-badge {
  position: absolute;
  left: 52%;
  top: 48px;
  display: grid;
  place-items: center;
  width: 172px;
  height: 132px;
  border-radius: 38px;
  color: #fff;
  background: linear-gradient(135deg, #20cc91, #05966d);
  box-shadow: 0 28px 55px rgba(5, 150, 109, .29);
  transform: translateX(-50%);
}

.cloud-badge svg { width: 88px; height: 88px; }

.floating-panel {
  position: absolute;
  width: 210px;
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(213, 237, 229, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 45px rgba(32, 132, 101, .12);
  backdrop-filter: blur(14px);
}

.floating-panel.left  { left: 36px; bottom: 150px; }
.floating-panel.right { right: 24px; top: 70px; }

.placeholder-lines span {
  display: block;
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: #d9f5eb;
}

.placeholder-lines span:nth-child(2) { width: 72%; }

.cube {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #bff7dc, #15b982);
  box-shadow: 0 12px 25px rgba(16, 142, 103, .21);
  animation: float 4.8s ease-in-out infinite;
}

.cube.c1 { left: 70px; top: 136px; }
.cube.c2 { right: 214px; top: 26px; width: 24px; height: 24px; animation-delay: .5s; }
.cube.c3 { right: 72px; bottom: 126px; width: 32px; height: 32px; animation-delay: 1s; }
.cube.c4 { left: 230px; bottom: 74px; width: 22px; height: 22px; animation-delay: 1.5s; }

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

/* ── Feature row ────────────────────────────────────────────────────────── */
.feature-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.feature-card {
  min-height: 202px;
  padding: 28px 22px 24px;
  border: 1px solid rgba(213, 234, 228, .92);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(20, 102, 80, .09);
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 22px;
  font-size: 24px;
  box-shadow: inset 0 -10px 18px rgba(7, 150, 108, .08);
}

.feature-icon .icon-svg { width: 34px; height: 34px; }

.feature-card strong { display: block; margin-bottom: 12px; color: #1b2a25; font-size: 18px; }
.feature-card p { color: #758881; font-size: 14px; line-height: 1.75; }

/* ── Section common ─────────────────────────────────────────────────────── */
section { position: relative; padding: 64px 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-kicker { margin-bottom: 8px; color: var(--brand-dark); font-size: 13px; font-weight: 900; }
.section-title  { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.16; letter-spacing: -.045em; }
.section-sub    { margin-top: 12px; color: #72827c; font-size: 16px; line-height: 1.8; }

/* ── Games section ──────────────────────────────────────────────────────── */
.games {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 110px 0 118px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfffd 6%, #f5fffb 100%);
}

.games::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251, 255, 253, .12), rgba(251, 255, 253, 0) 54%),
    url('/themes/web/candycake/assets/img/games-section-bg-candycake.png') center center / cover no-repeat;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.games::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 166, 124, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 166, 124, .035) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.games-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.games-copy { max-width: 430px; }

.games-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  color: #087958;
  background: linear-gradient(135deg, #dff9ee, #bdf1de);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
}

.games .section-title { margin-top: 28px; font-size: clamp(42px, 3.55vw, 64px); letter-spacing: -.06em; }
.games .title-accent  { color: var(--brand-dark); }
.games .section-sub   { max-width: 410px; margin-top: 22px; color: #4f635c; font-size: 18px; line-height: 1.85; }

.check-list { display: grid; gap: 26px; margin-top: 36px; color: #556861; font-size: 15px; }

.check-list > span {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.check-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #07815d;
  background: linear-gradient(135deg, #ecfff8, #d5f8ea);
  box-shadow: 0 12px 28px rgba(10, 142, 102, .1);
}

.check-icon .icon-svg { width: 28px; height: 28px; }

.check-copy strong { display: block; margin-bottom: 6px; color: #152923; font-size: 18px; }
.check-copy em { display: block; color: #677970; font-size: 14px; font-style: normal; line-height: 1.65; }

.games-action { min-width: 232px; min-height: 64px; margin-top: 42px; border-radius: 13px; font-size: 17px; }

.games-stage { position: relative; min-width: 0; padding: 18px 58px 34px 0; }

.game-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 210px));
  gap: 22px;
  align-items: stretch;
  justify-content: end;
}

.game-card {
  overflow: hidden;
  border: 1px solid rgba(204, 229, 222, .88);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(19, 97, 77, .12);
  transition: transform .22s ease, box-shadow .22s ease;
}

.game-card:hover { transform: translateY(-7px); box-shadow: 0 30px 70px rgba(19, 97, 77, .16); }

.cover {
  position: relative;
  aspect-ratio: 2 / 3;
  height: auto;
  overflow: hidden;
  background: linear-gradient(145deg, #d8f7ec, #0b986c);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.76), transparent 18%),
    radial-gradient(circle at 72% 74%, rgba(5,87,67,.34), transparent 25%),
    linear-gradient(145deg, rgba(255,255,255,.18), transparent);
}

.cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .18));
}

.cover.mc  { background-image: url('/themes/web/candycake/assets/img/games/minecraft.jpg'); }
.cover.pal { background-image: url('/themes/web/candycake/assets/img/games/palworld.jpg'); }
.cover.l4d { background-image: url('/themes/web/candycake/assets/img/games/l4d2.jpg'); }
.cover.sat { background-image: url('/themes/web/candycake/assets/img/games/Satisfactory.jpg'); }
.cover.dst { background-image: url('/themes/web/candycake/assets/img/games/dst.png'); }

.cover-placeholder {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(4px);
}

.game-name { min-height: 64px; padding: 18px 12px 20px; text-align: center; }
.game-name strong { display: block; color: #142721; font-size: 17px; font-weight: 900; }
.game-name span { display: none; }

.game-arrow {
  position: absolute;
  right: 0;
  top: 47%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 235, 229, .9);
  border-radius: 50%;
  color: #17332b;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 40px rgba(20, 103, 79, .12);
  transform: translateY(-50%);
}

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.slider-dots i { width: 10px; height: 10px; border-radius: 999px; background: #cfe6dd; }
.slider-dots i.active { width: 28px; background: var(--brand); }

/* ── Product matrix ─────────────────────────────────────────────────────── */
.matrix {
  position: relative;
  overflow: hidden;
  padding: 104px 0 92px;
  background:
    radial-gradient(circle at 78% 14%, rgba(34, 150, 112, .13), transparent 28%),
    linear-gradient(180deg, #f5fffb 0%, #f7fcfa 100%);
}

.matrix::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 150, 112, .032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(34, 150, 112, .032) 1px, transparent 1px);
  background-size: 76px 76px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.matrix-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 690px;
  gap: 54px;
  align-items: center;
  min-height: 320px;
}

.matrix-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 42px; }

.matrix-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--brand);
  background: linear-gradient(135deg, #f0fbf7, var(--brand-light));
  font-size: 15px;
  font-weight: 900;
}

.matrix-title { margin-top: 24px; font-size: clamp(42px, 3.45vw, 64px); line-height: 1.12; letter-spacing: -.06em; }
.matrix-sub   { max-width: 700px; margin-top: 22px; color: #526961; font-size: 18px; line-height: 1.9; }

.matrix-points {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 38px;
}

.matrix-point { display: flex; align-items: center; gap: 14px; min-width: 0; flex: 0 0 auto; }

.matrix-point .mini-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(34, 150, 112, .45);
  border-radius: 17px;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(235, 249, 244, .96));
  box-shadow: 0 8px 20px rgba(34, 150, 112, .1);
}

.matrix-point .mini-icon .icon-svg { position: relative; z-index: 1; width: 22px; height: 22px; stroke-width: 2.15; }
.matrix-point strong { display: block; color: #183029; font-size: 15px; line-height: 1.25; letter-spacing: -.01em; white-space: nowrap; }
.matrix-point > div > span { display: block; margin-top: 6px; color: #6f7f88; font-size: 13px; line-height: 1.2; white-space: nowrap; }

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

.product-card {
  min-height: 156px;
  padding: 26px 28px 22px;
  border: 1px solid rgba(217, 235, 230, .92);
  border-radius: 14px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 45px rgba(30, 107, 86, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover { transform: translateY(-6px); border-color: rgba(34, 150, 112, .25); box-shadow: 0 28px 70px rgba(30, 107, 86, .13); }

.product-card-head { display: flex; align-items: center; gap: 12px; min-width: 0; }

.product-card .mini-icon { width: 30px; height: 30px; border-radius: 0; color: var(--brand); background: transparent; box-shadow: none; }
.product-card .mini-icon .icon-svg { width: 28px; height: 28px; stroke-width: 2.15; }
.product-card strong { display: block; margin: 0; color: #182d27; font-size: 17px; line-height: 1.3; white-space: nowrap; }
.product-card p { min-height: 48px; margin: 18px 0 0; color: #64776f; font-size: 13px; line-height: 1.75; }

.product-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--brand); font-size: 13px; font-weight: 900; }
.product-link .icon-svg { width: 15px; height: 15px; }

.layer-visual { position: relative; min-height: 320px; opacity: .95; display: flex; align-items: center; justify-content: flex-end; overflow: visible; }

.matrix-visual-img {
  display: block;
  width: min(720px, 100%);
  height: auto;
  margin-right: -8px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: .98;
  filter: drop-shadow(0 24px 42px rgba(21, 130, 98, .12));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

/* ── Dashboard section ──────────────────────────────────────────────────── */
.dashboard {
  padding: 84px 0 6px;
  background:
    radial-gradient(circle at 77% 20%, rgba(35, 150, 112, .055), transparent 32%),
    linear-gradient(180deg, #f7fcfa 0%, #fbfdfc 100%);
}

.panel-layout { display: grid; grid-template-columns: 360px minmax(0, 960px); gap: 76px; align-items: center; justify-content: center; }

.dashboard .section-kicker { margin-bottom: 10px; color: #16936d; font-size: 14px; letter-spacing: .02em; }
.dashboard .section-title  { max-width: 330px; color: #14231f; font-size: clamp(34px, 2.85vw, 48px); line-height: 1.08; letter-spacing: -.06em; }
.dashboard .section-sub    { max-width: 330px; margin-top: 18px; color: #667872; font-size: 15px; line-height: 1.85; }

.dashboard .check-list { gap: 18px; max-width: 360px; margin-top: 34px; color: #536861; font-size: 15px; line-height: 1.45; }

.dashboard .check-list > span {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 13px;
}

.dashboard .check-list > span::before {
  content: "✓";
  flex: 0 0 auto;
  width: 18px;
  margin-top: 1px;
  color: #159b74;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.dashboard .btn.primary { min-height: 54px; margin-top: 30px !important; padding: 0 26px; border-radius: 11px; box-shadow: 0 16px 30px rgba(34, 150, 112, .18); }

.screen {
  overflow: hidden;
  justify-self: end;
  width: min(100%, 930px);
  border: 1px solid rgba(14, 55, 45, .12);
  border-radius: 14px;
  background: #14201c;
  box-shadow: 0 28px 60px rgba(3, 35, 26, .24);
}

.screen-top { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 16px; background: #0f1815; }

.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #20cf92;
  box-shadow: 14px 0 0 #f7c760, 28px 0 0 #e45f5f;
}

.screen-body { display: grid; grid-template-columns: 118px minmax(0, 1fr); min-height: 300px; }
.sidebar { padding: 18px 14px; background: #0b1512; border-right: 1px solid rgba(255,255,255,.06); }
.side-item { height: 28px; margin-bottom: 10px; border-radius: 8px; background: rgba(255,255,255,.06); }
.side-item.active { background: rgba(31, 201, 145, .2); }
.screen-main { padding: 18px 18px 20px; color: #e8fff7; }
.screen-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }

.dark-stat { min-height: 62px; padding: 10px; border-radius: 12px; background: rgba(255,255,255,.06); }
.dark-stat strong { display: block; margin-bottom: 8px; font-size: 18px; }
.dark-stat span { color: #90aaa1; font-size: 11px; }

.charts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.chart {
  height: 132px;
  padding: 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, transparent 0 24%, rgba(255,255,255,.04) 24% 25%, transparent 25% 49%, rgba(255,255,255,.04) 49% 50%, transparent 50% 74%, rgba(255,255,255,.04) 74% 75%, transparent 75%),
    rgba(255,255,255,.05);
}

.wave { width: 100%; height: 100%; }

/* ── Trust section ──────────────────────────────────────────────────────── */
.trust {
  padding: 34px 0 70px;
  background: linear-gradient(180deg, #fbfdfc 0%, #fbfdfc 65%, #dcefe4 100%);
}

.trust-row {
  display: grid;
  grid-template-columns: 310px repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 12px 20px;
  border: 1px solid rgba(216, 236, 229, .96);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 38px rgba(25, 105, 82, .065);
}

.trust-card:first-child { display: block; padding-left: 0; border-color: transparent; background: transparent; box-shadow: none; }
.trust-card strong { display: block; color: #152822; font-size: 24px; font-weight: 900; line-height: 1.1; letter-spacing: -.03em; }
.trust-card span   { display: block; margin-top: 6px; color: #7d8d87; font-size: 14px; white-space: nowrap; }

.trust-card > .mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-top: 0;
  border: 1px solid rgba(186, 233, 217, .88);
  border-radius: 16px;
  color: #138965;
  font-size: 0;
  line-height: 1;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, .9), transparent 42%),
    linear-gradient(135deg, #eefdf8 0%, #d6f6eb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), 0 10px 24px rgba(21, 151, 111, .09);
}

.trust-card > .mini-icon .icon-svg { width: 28px; height: 28px; stroke-width: 2.35; }

.brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding: 24px 0 0;
  color: #a1afa9;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  opacity: .86;
}

/* ── Pricing section ────────────────────────────────────────────────────── */
.pricing {
  position: relative;
  padding: 86px 0 72px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #04765f 0%, #14966f 47%, #98dfc5 100%);
  background-color: #14966f;
}

.pricing > .pricing-bg-img {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url("/themes/web/candycake/assets/img/pricing-bg-v3.png") left bottom / 112% auto no-repeat;
  opacity: .94;
}

.pricing > .pricing-bg-img::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(20, 150, 111, 0) 0%,
      rgba(20, 150, 111, 0) 58%,
      rgba(20, 150, 111, .16) 70%,
      rgba(20, 150, 111, .46) 84%,
      rgba(20, 150, 111, .78) 94%,
      rgba(20, 150, 111, .92) 100%),
    linear-gradient(180deg,
      rgba(20, 150, 111, 0) 0%,
      rgba(20, 150, 111, 0) 55%,
      rgba(20, 150, 111, .16) 68%,
      rgba(20, 150, 111, .5) 84%,
      rgba(20, 150, 111, .78) 94%,
      rgba(20, 150, 111, .9) 100%);
}

.pricing > .pricing-bg-img::after {
  content: "";
  position: absolute;
  inset: -4% -2% -10% -2%;
  pointer-events: none;
  background: radial-gradient(ellipse 92% 48% at 24% 104%, rgba(20, 150, 111, .58), transparent 74%);
  filter: blur(10px);
  opacity: .72;
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 10%, rgba(255, 255, 255, .18), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.pricing::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #dcefe4 0%, rgba(220, 239, 228, 0) 280px),
    linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 220px),
    radial-gradient(ellipse 64% 88% at 18% 46%, rgba(7, 103, 76, .55), rgba(7, 103, 76, .08) 58%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 470px) repeat(3, minmax(230px, 300px));
  gap: 34px;
  align-items: center;
  padding-left: clamp(28px, 3vw, 58px);
  padding-right: clamp(8px, 1.2vw, 24px);
  color: #fff;
}

.pricing-copy {
  position: relative;
  z-index: 1;
  align-self: stretch;
  max-width: 430px;
  padding: 24px 26px 28px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(6, 86, 64, .62), rgba(12, 112, 83, .36));
  box-shadow: 0 22px 42px rgba(4, 60, 46, .28);
  backdrop-filter: blur(5px);
}

.pricing-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 16% 14%, rgba(255, 255, 255, .17), transparent 44%);
}

.pricing-copy > * {
  position: relative;
  z-index: 1;
}

.pricing-copy::after { content: none; }

.pricing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 28px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 999px;
  color: rgba(255, 255, 255, .96);
  font-size: 15px;
  font-weight: 800;
  background: rgba(4, 75, 56, .34);
  box-shadow: 0 10px 22px rgba(3, 54, 42, .2);
  backdrop-filter: blur(12px);
}

.pricing-copy h2 {
  max-width: 390px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  letter-spacing: -.07em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .32);
}

.pricing-copy p {
  max-width: 390px;
  margin-top: 18px;
  color: rgba(245, 255, 251, .94);
  font-size: 17px;
  line-height: 1.8;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .24);
}

.price-icons { display: grid; gap: 18px; max-width: 390px; margin: 34px 0 0; padding: 0; list-style: none; color: rgba(255, 255, 255, .95); }

.price-icons li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 7px 10px 7px 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(5, 78, 58, .24);
}

.price-icons .pi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.price-icons .pi-icon .icon-svg { width: 22px; height: 22px; stroke-width: 2; }
.price-icons .pi-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.price-icons .pi-text strong { color: #fff; font-size: 16px; font-weight: 800; letter-spacing: -.01em; }
.price-icons .pi-text em { color: rgba(236, 255, 248, .8); font-size: 13px; font-style: normal; font-weight: 500; line-height: 1.5; }

.price-card {
  position: relative;
  z-index: 1;
  min-height: 460px;
  padding: 42px 34px 28px;
  border: 1px solid rgba(211, 232, 225, .95);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: 0 22px 46px rgba(5, 59, 46, .18);
}

.price-card.featured { border: 3px solid rgba(20, 151, 113, .92); transform: translateY(-10px); box-shadow: 0 30px 70px rgba(5, 91, 70, .26); }

.ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0f916e, #29b88d);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 10px 22px rgba(5, 105, 78, .28);
  transform: translateX(-50%);
}

.ribbon::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 30%, transparent 31%),
    conic-gradient(from 0deg, rgba(255,255,255,.95), rgba(255,255,255,.4), rgba(255,255,255,.95));
  mask: radial-gradient(circle, #000 38%, transparent 39% 60%, #000 61%);
  -webkit-mask: radial-gradient(circle, #000 38%, transparent 39% 60%, #000 61%);
}

.price-card h3   { margin: 0; color: #13251f; font-size: 26px; letter-spacing: -.03em; }
.price-card > p  { margin-top: 12px; color: #697a74; font-size: 15px; line-height: 1.55; }

.price {
  margin-top: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(214, 228, 224, .9);
  color: #128261;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -.06em;
}

.price small { color: #2d7c65; font-size: 17px; font-weight: 800; letter-spacing: 0; }
.price small:first-child { margin-right: 10px; font-size: 22px; }

.price-card ul { display: grid; gap: 19px; min-height: 138px; margin: 30px 0 34px; padding: 0; color: #33453f; font-size: 16px; list-style: none; }
.price-card li::before { content: "✓"; margin-right: 12px; color: var(--brand); font-weight: 900; }

.price-card .btn { width: 100%; min-height: 56px; border-color: rgba(18, 137, 102, .42); border-radius: 10px; color: #128261; font-weight: 900; background: transparent; }
.price-card .btn.primary { color: #fff; background: linear-gradient(135deg, #0c9c75, #18b484); box-shadow: 0 14px 26px rgba(18, 137, 102, .2); }

.pricing-assurances {
  position: relative;
  z-index: 1;
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  align-items: center;
  margin-top: 4px;
  padding: 0 16px;
}

.pricing-assurance { display: flex; align-items: center; gap: 14px; color: #0a5240; }
.pricing-assurance .mini-icon { width: 42px; height: 42px; color: #0a5240; background: transparent; }
.pricing-assurance .mini-icon .icon-svg { width: 36px; height: 36px; stroke-width: 2.2; }
.pricing-assurance strong { display: block; color: #0a5240; font-size: 17px; }
.pricing-assurance span { display: block; margin-top: 5px; color: rgba(10, 82, 64, .72); font-size: 13px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer { padding: 52px 0 0; background: #fff; border-top: 1px solid #eef0ef; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr) 1.4fr;
  gap: 28px 24px;
  padding-bottom: 44px;
  border-bottom: 1px solid #eef0ef;
  align-items: start;
}

.footer-brand-col .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-brand-col .brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-brand-col .brand-name { font-size: 18px; font-weight: 800; color: #101a16; letter-spacing: -.01em; }
.footer-brand-col .brand-en   { font-size: 10px; font-weight: 700; color: #8fa39b; letter-spacing: .06em; }

.footer-desc { margin: 16px 0 20px; color: #6b7d77; font-size: 13px; line-height: 1.85; max-width: 260px; }

.footer-trust-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 8px; }
.footer-trust-icons span { display: flex; align-items: center; gap: 6px; color: #4f6860; font-size: 12px; font-weight: 600; }
.footer-trust-icons .icon-svg { width: 14px; height: 14px; color: var(--brand); stroke-width: 2.2; flex-shrink: 0; }

.footer-nav-col h4 { margin: 0 0 16px; font-size: 14px; font-weight: 700; color: #101a16; letter-spacing: -.01em; }
.footer-nav-col a  { display: block; color: #6b7d77; font-size: 13px; line-height: 1; padding: 5px 0; text-decoration: none; transition: color .15s; }
.footer-nav-col a:hover { color: var(--brand); }
.footer-link-more { margin-top: 8px; color: var(--brand) !important; font-weight: 700; font-size: 13px; }

.footer-contact-col h4 { margin: 0 0 16px; font-size: 14px; font-weight: 700; color: #101a16; }

.footer-contact-list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; }

.fc-icon { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: #f0faf6; color: var(--brand); flex-shrink: 0; }
.fc-icon .icon-svg { width: 16px; height: 16px; stroke-width: 2; }
.fc-label { display: block; font-size: 11px; color: #8fa39b; font-weight: 600; margin-bottom: 2px; }
.fc-value { display: block; font-size: 13px; color: #2c3e38; font-weight: 500; line-height: 1.55; }

.footer-consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  justify-content: center;
  padding: 10px 20px;
  border: 1.5px solid var(--brand);
  border-radius: 8px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.footer-consult-btn:hover { background: var(--brand); color: #fff; }
.footer-consult-btn .icon-svg { width: 16px; height: 16px; stroke-width: 2; }

.copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 22px;
  margin-top: 10px;
  padding: 18px 0;
  border-top: 1px solid #eef4f1;
  color: #71877f;
  font-size: 12px;
}
.copyright-beian {
  display: flex;
  flex: 1 1 520px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  min-width: 0;
}
.copyright-beian a { display: inline-flex; align-items: center; gap: 5px; color: #526b62; font-weight: 600; text-decoration: none; transition: color .15s; }
.copyright-beian a:hover { color: var(--brand); }
.beian-icon { width: 14px; height: 14px; stroke-width: 2; }

html.motion-ready .copyright > span {
  opacity: 1;
  transform: none;
  filter: none;
}

.copyright-lang {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid #dde5e1;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .15s;
  white-space: nowrap;
}

.copyright-lang:hover { border-color: var(--brand); color: var(--brand); }
.copyright-lang .icon-svg { width: 13px; height: 13px; stroke-width: 2; }

/* ── Theme normalization ─────────────────────────────────────────────────── */
.nav-links a.active,
.title-accent,
.section-kicker,
.games .title-accent {
  color: var(--brand);
}

.btn.primary,
.ribbon {
  background: linear-gradient(135deg, #2daf87, var(--brand));
  color: #fff;
}

.btn.ghost,
.games-kicker,
.check-icon,
.metric-icon,
.mini-icon,
.feature-icon {
  color: var(--brand-dark);
  background: linear-gradient(135deg, #f0fbf7, var(--brand-light));
}

.nav-links a.active::after,
.slider-dots i.active,
.eyebrow .dot {
  background: var(--brand);
}

.metric-icon { color: var(--brand-strong); }

.metric-card,
.game-card,
.feature-card,
.product-card,
.trust-card {
  border-color: var(--line);
}

.cloud-badge { background: linear-gradient(145deg, #4ab894, var(--brand)); }
.screen-dot  { background: var(--brand); }
.side-item.active { background: rgba(34, 150, 112, .22); }

.wave path[stroke="#22d698"]          { stroke: var(--brand); }
.wave path[fill="rgba(27,207,146,.28)"] { fill: rgba(34, 150, 112, .28); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-search { display: none; }
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; }

  .hero-grid,
  .games-layout,
  .matrix-head,
  .matrix-grid,
  .panel-layout,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-art { min-height: 390px; }
  .feature-row { grid-template-columns: repeat(3, 1fr); }
  .game-track { grid-template-columns: repeat(3, minmax(160px, 1fr)); justify-content: stretch; }
  .matrix-points { justify-content: flex-start; flex-wrap: wrap; gap: 20px 34px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { align-items: stretch; min-height: 0; }
  .pricing-copy { max-width: none; padding: 22px 20px 24px; border-radius: 20px; }
  .price-icons { max-width: none; }
  .pricing-assurances { grid-column: 1; }
  .panel-layout { gap: 42px; justify-content: stretch; }
  .screen { justify-self: stretch; width: 100%; }

  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .page .container { width: min(1680px, calc(100% - 28px)); }
  .topbar .container { width: calc(100% - 10px); max-width: none; padding-left: 0; padding-right: 0; margin-left: 10px; margin-right: 0; }
  .topbar { height: auto; padding: 10px 0; }
  .nav { align-items: flex-start; }
  .nav-login { display: none; }
  .nav-actions { margin-left: auto; gap: 0; }
  .nav-actions .nav-signup { height: 42px; min-height: 42px; margin-right: 0; padding: 0 18px; border-radius: 8px; }
  .hero { padding-top: 36px; }

  .metrics,
  .feature-row,
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand-col { grid-column: 1 / -1; }

  .hero-art { min-height: 320px; --hero-art-scale: .82; margin-bottom: -70px; }
  .floating-panel { display: none; }
  .game-track { grid-template-columns: 1fr 1fr; justify-content: stretch; }
  .screen-body { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .stat-row, .charts { grid-template-columns: 1fr 1fr; }
  .brands { flex-wrap: wrap; gap: 18px 26px; }
  .pricing-copy { padding: 18px 16px 20px; border-radius: 18px; }
  .price-icons li { min-height: 52px; padding: 8px 8px 8px 6px; }
  .pricing-copy::after { display: none; }
  .pricing-assurances { grid-template-columns: 1fr; gap: 18px; padding: 0; }
  .copyright { flex-direction: column; align-items: flex-start; line-height: 1.9; }
  .copyright-beian { flex: none; justify-content: flex-start; width: 100%; gap: 6px 14px; }
}

@media (max-width: 520px) {
  h1 { font-size: 38px; }

  .metrics,
  .feature-row,
  .matrix-points,
  .product-grid,
  .game-track,
  .trust-row,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-contact-col { grid-column: 1 / -1; }
  .copyright { flex-direction: column; align-items: flex-start; gap: 10px; }
  .copyright-beian a { white-space: normal; }
  .matrix-points { align-items: flex-start; gap: 18px; }
  .matrix-point { width: 100%; }
  .hero-art { --hero-art-scale: .64; height: 250px; margin-bottom: -110px; }
  .section-head { display: block; }
  .screen-main { padding: 14px; }
}
