:root {
  --bg: #0b0d0c;
  --bg-soft: #121512;
  --paper: #f3f0e8;
  --ink: #0b0d0c;
  --muted: #a9aea7;
  --line: rgba(255, 255, 255, 0.12);
  --lime: #c9ff4a;
  --orange: #ff8a4c;
  --mint: #78e5ba;
  --blue: #75a7ff;
  --purple: #ae8cff;
  --font-sans: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
  --font-cn: "Noto Sans SC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: #f6f7f3;
  background:
    radial-gradient(circle at 70% 0%, rgba(201, 255, 74, 0.07), transparent 29rem),
    var(--bg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: relative;
  z-index: 10;
  width: min(1240px, calc(100% - 48px));
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-cn);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  padding: 7px 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 2px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 9px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}

.brand-mark span {
  display: block;
  height: 13px;
  background: currentColor;
  border-radius: 2px 2px 1px 1px;
}

.brand-mark span:nth-child(2) {
  height: 18px;
}

.brand-mark span:nth-child(3) {
  height: 10px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #b6bbb4;
  font-family: var(--font-cn);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a,
.footer-main nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-main nav a:hover {
  color: var(--lime);
}

.header-cta {
  height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-family: var(--font-cn);
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.14), 0 8px 25px rgba(201, 255, 74, 0.12);
}

.header-cta svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  padding: 66px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
  align-items: center;
  gap: 7vw;
}

.eyebrow {
  width: fit-content;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #cdd1ca;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--font-cn);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 255, 74, 0.1), 0 0 15px var(--lime);
  animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
  50% {
    opacity: 0.55;
    box-shadow: 0 0 0 7px rgba(201, 255, 74, 0);
  }
}

.hero h1 {
  margin: 25px 0 25px;
  max-width: 660px;
  color: #f4f3ee;
  font-family: var(--font-cn);
  font-size: clamp(58px, 6.4vw, 92px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;
  color: var(--lime);
  text-shadow: 0 0 46px rgba(201, 255, 74, 0.09);
}

.hero-intro {
  max-width: 595px;
  margin: 0;
  color: #aeb3ac;
  font-family: var(--font-cn);
  font-size: 17px;
  line-height: 1.9;
}

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

.button {
  height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-cn);
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15), 0 15px 40px rgba(201, 255, 74, 0.09);
}

.button-ghost {
  color: #e5e7e2;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.hero-trust {
  margin: 33px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  color: #8f958e;
  list-style: none;
  font-family: var(--font-cn);
  font-size: 12px;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--lime);
  stroke-width: 2.2;
}

.machine-wrap {
  position: relative;
  width: 100%;
  max-width: 465px;
  justify-self: end;
  padding: 8px 22px 26px;
}

.machine-glow {
  position: absolute;
  width: 115%;
  aspect-ratio: 1;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 255, 74, 0.15), rgba(201, 255, 74, 0.02) 45%, transparent 67%);
  filter: blur(14px);
}

.machine {
  position: relative;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 24%),
    #1b201c;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px 30px 22px 22px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.14),
    inset 10px 0 20px rgba(255, 255, 255, 0.018),
    0 38px 90px rgba(0, 0, 0, 0.48);
}

.machine::before {
  content: "";
  position: absolute;
  top: 0;
  right: 33px;
  width: 55px;
  height: 100%;
  transform: skewX(-14deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent);
  pointer-events: none;
}

.machine-top {
  height: 38px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.machine-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-cn);
  font-size: 14px;
  font-weight: 800;
}

.mini-mark {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(90deg, transparent 0 22%, var(--ink) 22% 36%, transparent 36% 44%, var(--ink) 44% 58%, transparent 58% 66%, var(--ink) 66% 80%, transparent 80%),
    var(--lime);
  border-radius: 5px;
}

.machine-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #899088;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.machine-live i {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
}

.machine-window {
  position: relative;
  padding: 14px 14px 10px;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.05), transparent 35%),
    #090b0a;
  border: 5px solid #303630;
  border-radius: 16px;
  box-shadow: inset 0 0 40px #000;
}

.machine-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 26%, rgba(255, 255, 255, 0.035) 27%, transparent 44%);
  pointer-events: none;
}

.shelf {
  position: relative;
  padding: 5px 1px 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  border-bottom: 7px solid #2c312d;
  box-shadow: 0 7px 0 #050605;
}

.shelf + .shelf {
  padding-top: 16px;
}

.mini-product {
  position: relative;
  min-height: 137px;
  padding: 15px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 250ms ease, border-color 250ms ease;
}

.mini-product:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.mini-product.is-selected {
  border-color: var(--lime);
  box-shadow: inset 0 0 0 1px var(--lime), 0 0 18px rgba(201, 255, 74, 0.14);
}

.mini-product::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: radial-gradient(circle at 50% 40%, currentColor, transparent 55%);
}

.mini-product-orange {
  color: var(--orange);
  background: linear-gradient(145deg, #312019, #171313);
}

.mini-product-green {
  color: var(--mint);
  background: linear-gradient(145deg, #173026, #101714);
}

.mini-product-blue {
  color: var(--blue);
  background: linear-gradient(145deg, #18243a, #10141b);
}

.mini-product-purple {
  color: var(--purple);
  background: linear-gradient(145deg, #241b37, #15121b);
}

.product-code {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sim-card {
  position: relative;
  z-index: 1;
  width: 43px;
  height: 55px;
  margin: 5px 0 8px;
  background: currentColor;
  border-radius: 6px 6px 11px 6px;
  box-shadow: 0 9px 22px color-mix(in srgb, currentColor 20%, transparent);
  transform: rotate(-4deg);
}

.sim-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 13px 13px 0;
  border-color: transparent #171313 transparent transparent;
}

.mini-product-green .sim-card::after {
  border-right-color: #101714;
}

.sim-card i {
  position: absolute;
  width: 22px;
  height: 18px;
  left: 10px;
  top: 21px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(0, 0, 0, 0.25) 48% 53%, transparent 54%),
    linear-gradient(transparent 47%, rgba(0, 0, 0, 0.25) 48% 53%, transparent 54%),
    #d6bf78;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.app-icon {
  position: relative;
  z-index: 1;
  width: 51px;
  height: 51px;
  margin: 5px 0 8px;
  padding: 7px;
  color: #fff;
  background: currentColor;
  border-radius: 13px;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.28);
}

.rocket-icon {
  background: #4c84ec;
}

.rocket-icon svg,
.account-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.5;
}

.account-icon {
  background: #8a66df;
}

.topup-icon {
  background: #8a66df;
}

.topup-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.3;
}

.mini-product strong,
.mini-product small {
  position: relative;
  z-index: 1;
  color: #f7f8f5;
  font-family: var(--font-cn);
}

.mini-product strong {
  font-size: 10px;
  font-weight: 700;
}

.mini-product small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 6px;
  letter-spacing: 0.12em;
}

.machine-control {
  height: 63px;
  padding: 10px 7px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.machine-control > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.machine-control span {
  color: var(--lime);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.machine-control strong {
  color: #8c928b;
  font-family: var(--font-cn);
  font-size: 10px;
  font-weight: 500;
}

.machine-button {
  width: 37px;
  height: 37px;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #242a25;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.35);
  transition: transform 150ms ease;
}

.machine-button:active {
  transform: scale(0.9);
}

.machine-button span {
  width: 13px;
  height: 13px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(201, 255, 74, 0.45);
}

.pickup {
  height: 55px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5b625b;
  background: #070807;
  border: 4px solid #2b302c;
  border-radius: 10px;
  box-shadow: inset 0 8px 18px #000;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.pickup span {
  color: #424842;
  font-size: 12px;
}

.floating-tag {
  position: absolute;
  z-index: 4;
  height: 38px;
  padding: 0 13px 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  background: #f3f1ea;
  border: 1px solid #fff;
  border-radius: 9px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  font-family: var(--font-cn);
  font-size: 11px;
  font-weight: 700;
  animation: tag-float 4s ease-in-out infinite;
}

.floating-tag span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--lime);
  border-radius: 6px;
  font-size: 11px;
}

.tag-one {
  top: 116px;
  left: -25px;
  transform: rotate(-3deg);
}

.tag-two {
  right: -15px;
  bottom: 102px;
  animation-delay: -2s;
}

.tag-two span {
  color: white;
  background: #6b8df2;
}

@keyframes tag-float {
  50% {
    translate: 0 -8px;
  }
}

.marquee {
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  transform: rotate(-1deg) scale(1.02);
}

.marquee-track {
  width: max-content;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 27px;
  animation: marquee-scroll 28s linear infinite;
}

.marquee span {
  font-family: var(--font-cn);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.marquee i {
  font-style: normal;
  font-size: 12px;
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.products-section {
  padding: 155px 0 125px;
}

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

.section-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.section-heading h2,
.process-intro h2,
.service-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-cn);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.section-heading h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: #929890;
  font-family: var(--font-cn);
  font-size: 14px;
  line-height: 1.8;
}

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

.product-card {
  position: relative;
  min-height: 430px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--ink);
  border-radius: 20px;
  transition: transform 250ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 250ms ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.27);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 50%);
  pointer-events: none;
}

.card-lime {
  background: var(--lime);
}

.card-orange {
  background: var(--orange);
}

.card-mint {
  background: var(--mint);
}

.card-blue {
  background: var(--blue);
}

.card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.card-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  font-size: 15px;
  transition: transform 180ms ease;
}

.product-card:hover .card-arrow {
  transform: rotate(45deg);
}

.card-icon {
  position: absolute;
  z-index: 1;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
}

.virtual-card-icon {
  width: 133px;
  height: 83px;
  padding: 14px;
  overflow: hidden;
  color: var(--lime);
  background: #121512;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.15);
  transform: translateX(-50%) rotate(-6deg);
}

.virtual-card-icon::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  right: -27px;
  bottom: -32px;
  border: 12px solid currentColor;
  border-radius: 50%;
  opacity: 0.6;
}

.virtual-card-icon span {
  font-size: 26px;
  font-weight: 800;
}

.virtual-card-icon i {
  position: absolute;
  width: 25px;
  height: 18px;
  left: 14px;
  bottom: 13px;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: 0.65;
}

.country-icon {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.73);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 26px;
  box-shadow: 9px 10px 0 rgba(0, 0, 0, 0.12);
  transform: translateX(-50%) rotate(4deg);
}

.country-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 11px;
  height: 11px;
  background: #101210;
  border-radius: 50%;
}

.country-icon > span {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.signal-bars {
  position: absolute;
  right: 12px;
  bottom: 12px;
  height: 17px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.signal-bars b {
  width: 4px;
  height: 7px;
  background: currentColor;
  border-radius: 1px;
}

.signal-bars b:nth-child(2) {
  height: 12px;
}

.signal-bars b:nth-child(3) {
  height: 17px;
}

.digital-icon {
  width: 122px;
  height: 100px;
  display: grid;
  place-items: center;
  color: white;
  background: #101312;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 9px 10px 0 rgba(0, 0, 0, 0.13);
  transform: translateX(-50%) rotate(-3deg);
}

.digital-icon span {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.digital-icon i {
  position: absolute;
  right: -9px;
  bottom: -9px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: white;
  border: 4px solid var(--blue);
  border-radius: 50%;
  font-style: normal;
  font-size: 18px;
}

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

.card-copy h3 {
  margin: 0 0 10px;
  font-family: var(--font-cn);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.card-copy p {
  min-height: 50px;
  margin: 0 0 22px;
  color: rgba(0, 0, 0, 0.65);
  font-family: var(--font-cn);
  font-size: 12px;
  line-height: 1.7;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.17);
  font-family: var(--font-cn);
  font-size: 12px;
  font-weight: 700;
}

.card-link b {
  font-size: 16px;
  transition: transform 180ms ease;
}

.product-card:hover .card-link b {
  transform: translateX(5px);
}

.process-section {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 9vw;
  border-top: 1px solid var(--line);
}

.process-intro h2 {
  max-width: 420px;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.2;
}

.process-intro p {
  max-width: 420px;
  margin: 25px 0 0;
  color: #929890;
  font-family: var(--font-cn);
  font-size: 14px;
  line-height: 1.9;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 142px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 48px 62px 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  border-top: 1px solid var(--line);
}

.step-number {
  align-self: start;
  color: #727971;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: rgba(201, 255, 74, 0.07);
  border: 1px solid rgba(201, 255, 74, 0.2);
  border-radius: 17px;
}

.step-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.5;
}

.process-list h3 {
  margin: 0 0 7px;
  font-family: var(--font-cn);
  font-size: 18px;
  font-weight: 700;
}

.process-list p {
  margin: 0;
  color: #888e87;
  font-family: var(--font-cn);
  font-size: 13px;
  line-height: 1.7;
}

.service-section {
  padding: 30px 0 130px;
}

.service-card {
  min-height: 525px;
  padding: clamp(35px, 6vw, 75px);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 8vw;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 90%, rgba(201, 255, 74, 0.13), transparent 24rem),
    var(--paper);
  border-radius: 28px;
}

.service-copy .section-kicker,
.faq-heading .section-kicker {
  color: #69705f;
}

.service-copy h2 {
  font-size: clamp(40px, 4vw, 57px);
  line-height: 1.2;
}

.service-copy > p {
  max-width: 510px;
  margin: 24px 0 27px;
  color: #696d68;
  font-family: var(--font-cn);
  font-size: 14px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-cn);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.service-features {
  padding-left: 5vw;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.service-features article {
  padding: 21px 0;
  display: grid;
  grid-template-columns: 51px 1fr;
  gap: 17px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-features article:last-child {
  border-bottom: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 14px;
}

.feature-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.7;
}

.service-features h3 {
  margin: 1px 0 5px;
  font-family: var(--font-cn);
  font-size: 16px;
  font-weight: 700;
}

.service-features p {
  margin: 0;
  color: #727670;
  font-family: var(--font-cn);
  font-size: 12px;
  line-height: 1.7;
}

.faq-section {
  padding: 75px 0 140px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
}

.faq-heading h2 {
  max-width: 450px;
  font-size: clamp(37px, 3.7vw, 52px);
  line-height: 1.25;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-cn);
  font-size: 15px;
  font-weight: 600;
}

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

.faq-list summary span {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: #aeb3ad;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

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

.faq-list details p {
  max-width: 650px;
  margin: -5px 55px 25px 0;
  color: #8d938c;
  font-family: var(--font-cn);
  font-size: 13px;
  line-height: 1.9;
}

.final-cta {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  min-height: 510px;
  padding: 80px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ink);
  text-align: center;
  background: var(--lime);
  border-radius: 28px;
}

.cta-pill {
  position: relative;
  z-index: 2;
  padding: 7px 11px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  margin: 19px 0 14px;
  font-size: clamp(48px, 6vw, 77px);
  line-height: 1.08;
}

.final-cta h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.final-cta p {
  position: relative;
  z-index: 2;
  margin: 0 0 30px;
  color: rgba(0, 0, 0, 0.58);
  font-family: var(--font-cn);
  font-size: 13px;
}

.button-light {
  position: relative;
  z-index: 2;
  color: white;
  background: var(--ink);
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.11), 0 15px 40px rgba(0, 0, 0, 0.18);
}

.cta-orbit {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.orbit-one {
  width: 600px;
  height: 600px;
}

.orbit-two {
  width: 850px;
  height: 270px;
  transform: rotate(-10deg);
}

.orbit-two::before,
.orbit-one::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: var(--ink);
  border: 4px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.orbit-one::before {
  left: 43px;
  top: 105px;
}

.orbit-two::before {
  right: 75px;
  bottom: 22px;
}

.site-footer {
  width: min(1240px, calc(100% - 48px));
  margin: 85px auto 0;
}

.footer-main {
  min-height: 125px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid var(--line);
}

.footer-main > p {
  color: #757c74;
  font-family: var(--font-cn);
  font-size: 13px;
}

.footer-main nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: #939991;
  font-family: var(--font-cn);
  font-size: 12px;
}

.footer-bottom {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #5f655f;
  font-family: var(--font-cn);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-in 750ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 90ms;
}

.reveal-delay-2 {
  animation-delay: 180ms;
}

.reveal-delay-3 {
  animation-delay: 270ms;
}

.reveal-delay-4 {
  animation-delay: 360ms;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.product-grid .scroll-reveal:nth-child(2),
.process-list .scroll-reveal:nth-child(2),
.service-features .scroll-reveal:nth-child(2) {
  transition-delay: 70ms;
}

.product-grid .scroll-reveal:nth-child(3),
.process-list .scroll-reveal:nth-child(3),
.service-features .scroll-reveal:nth-child(3) {
  transition-delay: 140ms;
}

.product-grid .scroll-reveal:nth-child(4) {
  transition-delay: 210ms;
}

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cursor-light {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  left: 0;
  top: 0;
  opacity: 0.12;
  pointer-events: none;
  background: radial-gradient(circle, rgba(201, 255, 74, 0.42), rgba(201, 255, 74, 0.08) 32%, transparent 68%);
  border-radius: 50%;
  filter: blur(10px);
  transform: translate3d(calc(var(--cursor-x, 50vw) - 50%), calc(var(--cursor-y, 20vh) - 50%), 0);
  transition: opacity 300ms ease;
}

.page-progress {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: var(--page-progress, 0%);
  height: 100%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.site-header {
  position: sticky;
  top: 0;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    border-radius 240ms ease,
    box-shadow 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 13, 12, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 760px;
  height: 760px;
  right: -230px;
  top: -150px;
  opacity: 0.18;
  background:
    repeating-radial-gradient(circle, rgba(201, 255, 74, 0.19) 0 1px, transparent 1px 34px);
  border-radius: 50%;
  mask-image: radial-gradient(circle, black, transparent 66%);
  animation: ambient-spin 45s linear infinite;
}

.hero-ambient {
  position: absolute;
  z-index: -1;
  color: rgba(255, 255, 255, 0.11);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.34em;
  writing-mode: vertical-rl;
}

.ambient-left {
  left: -30px;
  top: 145px;
}

.ambient-right {
  right: -26px;
  bottom: 100px;
}

@keyframes ambient-spin {
  to {
    transform: rotate(360deg);
  }
}

.live-feed {
  width: min(100%, 445px);
  min-height: 54px;
  margin-top: 28px;
  padding: 10px 13px;
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
}

.live-feed-label {
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.live-feed-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.live-feed-copy > span {
  overflow: hidden;
  color: #c4c8c1;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-cn);
  font-size: 10px;
}

.live-feed-copy small {
  color: #5f665f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.signal-wave {
  height: 18px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.signal-wave i {
  width: 2px;
  height: 5px;
  background: var(--lime);
  border-radius: 2px;
  animation: signal-wave 1s ease-in-out infinite alternate;
}

.signal-wave i:nth-child(2) {
  animation-delay: -0.2s;
}

.signal-wave i:nth-child(3) {
  animation-delay: -0.4s;
}

.signal-wave i:nth-child(4) {
  animation-delay: -0.6s;
}

.signal-wave i:nth-child(5) {
  animation-delay: -0.8s;
}

@keyframes signal-wave {
  to {
    height: 18px;
  }
}

.machine-wrap {
  perspective: 1200px;
}

.machine {
  transform: rotateY(-2.5deg) rotateX(0.5deg);
  transform-style: preserve-3d;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.machine-wrap:hover .machine {
  transform: rotateY(0deg) rotateX(0deg) translateY(-4px);
}

.machine::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 88%;
  height: 24px;
  left: 6%;
  bottom: -22px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  filter: blur(13px);
  transform: rotateX(65deg);
}

.mini-product {
  cursor: pointer;
}

.mini-product:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: -3px;
}

.machine-button {
  position: relative;
  width: 43px;
  height: 43px;
  background:
    repeating-conic-gradient(from 0deg, #313832 0 8deg, #202521 8deg 16deg);
}

.machine-button::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: #151915;
  border-radius: 50%;
}

.machine-button > span {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
}

.machine-button > span i {
  width: 7px;
  height: 7px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
}

.machine.is-dispensing {
  animation: machine-shake 520ms cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.machine.is-dispensing .machine-window {
  animation: machine-flash 700ms ease;
}

.machine.is-dispensing .machine-button > span {
  animation: button-press 500ms ease;
}

@keyframes machine-shake {
  15%,
  75% {
    transform: rotateY(-2deg) translateX(-2px);
  }

  35%,
  55% {
    transform: rotateY(-2deg) translateX(3px);
  }
}

@keyframes machine-flash {
  35% {
    box-shadow: inset 0 0 55px rgba(201, 255, 74, 0.17);
  }
}

@keyframes button-press {
  50% {
    transform: scale(0.65);
    filter: brightness(1.4);
  }
}

.pickup {
  position: relative;
  overflow: hidden;
}

.dispensed-item {
  position: absolute;
  width: 58px;
  height: 34px;
  left: 50%;
  top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--ink);
  background: var(--item-accent, var(--lime));
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
  transform: translateX(-50%) rotate(-8deg);
  opacity: 0;
}

.dispensed-item i {
  width: 10px;
  height: 13px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
}

.dispensed-item b {
  font-size: 6px;
  letter-spacing: 0.08em;
}

.machine.is-dispensing .dispensed-item {
  animation: item-drop 820ms cubic-bezier(0.22, 0.7, 0.2, 1) 220ms forwards;
}

@keyframes item-drop {
  0% {
    top: -45px;
    opacity: 0;
    transform: translateX(-50%) rotate(-8deg);
  }

  68% {
    top: 13px;
    opacity: 1;
    transform: translateX(-50%) rotate(5deg);
  }

  100% {
    top: 10px;
    opacity: 1;
    transform: translateX(-50%) rotate(0deg);
  }
}

.machine-hint {
  position: absolute;
  right: -74px;
  bottom: 20px;
  width: 125px;
  padding-top: 8px;
  color: #70776f;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--font-cn);
  font-size: 8px;
  line-height: 1.6;
}

.machine-hint::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 1px;
  left: -33px;
  top: -1px;
  background: rgba(255, 255, 255, 0.13);
}

.machine-hint > span {
  display: block;
  margin-bottom: 4px;
  color: var(--lime);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.pulse-strip {
  padding: 105px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 0.82fr;
  border-bottom: 1px solid var(--line);
}

.pulse-strip article {
  min-height: 142px;
  padding: 0 30px 27px;
  border-right: 1px solid var(--line);
}

.pulse-strip article:first-child {
  padding-left: 0;
}

.pulse-strip strong {
  display: block;
  font-size: clamp(45px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.08em;
}

.pulse-strip strong span {
  margin-left: 4px;
  color: var(--lime);
  font-size: 0.32em;
  letter-spacing: -0.02em;
}

.pulse-strip p {
  margin: 15px 0 0;
  color: #737a72;
  font-family: var(--font-cn);
  font-size: 10px;
}

.pulse-note {
  padding: 8px 0 0 28px;
  color: #555c55;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.13em;
}

.pulse-note span {
  width: 8px;
  height: 8px;
  margin-bottom: 14px;
  display: block;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--lime);
}

.products-section {
  padding-top: 115px;
}

.product-card {
  --rx: 0deg;
  --ry: 0deg;
  transform-style: preserve-3d;
}

.product-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.4), transparent 34%);
  transition: opacity 220ms ease;
}

.product-card:hover::before {
  opacity: 0.42;
}

.product-card.scroll-reveal.is-visible {
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
}

.product-card.scroll-reveal.is-visible:hover {
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-10px);
}

.product-card .card-icon,
.product-card .card-copy,
.product-card .card-topline {
  transform: translateZ(16px);
}

.receipt-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 350ms ease, visibility 0s linear 350ms;
}

.receipt-layer.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.receipt-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 5, 0.84);
  backdrop-filter: blur(16px);
}

.receipt-shell {
  position: relative;
  width: min(430px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  padding: 28px;
  overflow: auto;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(201, 255, 74, 0.14), transparent 25%),
    #f5f2e9;
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  transform: translateY(28px) scale(0.94);
  transition: transform 420ms cubic-bezier(0.2, 0.82, 0.2, 1);
  scrollbar-width: none;
}

.receipt-shell::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.receipt-layer.is-open .receipt-shell {
  transform: translateY(0) scale(1);
}

.receipt-shell::before,
.receipt-shell::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 8px;
  left: 0;
  background:
    radial-gradient(circle at 4px 4px, transparent 4px, #f5f2e9 4.5px) 0 0 / 16px 8px repeat-x;
}

.receipt-shell::before {
  top: -1px;
  transform: rotate(180deg);
}

.receipt-shell::after {
  bottom: -1px;
}

.receipt-close {
  position: absolute;
  z-index: 3;
  width: 35px;
  height: 35px;
  right: 18px;
  top: 18px;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  font-size: 23px;
  line-height: 1;
}

.receipt-machine-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.receipt-machine-label .mini-mark {
  width: 20px;
  height: 20px;
}

.receipt-success {
  width: fit-content;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #465719;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.receipt-success > span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 11px;
}

.receipt-shell h2 {
  margin: 15px 0 10px;
  font-family: var(--font-cn);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.receipt-shell > p {
  margin: 0;
  color: #696e67;
  font-family: var(--font-cn);
  font-size: 12px;
  line-height: 1.8;
}

.receipt-ticket {
  position: relative;
  margin: 25px 0 18px;
  padding: 19px;
  background: white;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.receipt-ticket > div:not(.barcode) {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.receipt-ticket span,
.receipt-ticket small {
  color: #858a84;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.receipt-ticket strong {
  font-family: var(--font-cn);
  font-size: 11px;
}

.receipt-ready {
  color: #5b7a06;
}

.barcode {
  height: 35px;
  margin: 18px 0 9px;
  background: repeating-linear-gradient(90deg, #0b0d0c 0 2px, transparent 2px 4px, #0b0d0c 4px 5px, transparent 5px 8px);
}

.receipt-button {
  width: 100%;
  color: white;
  background: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 390px;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(53px, 7vw, 76px);
  }

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

  .product-card {
    min-height: 420px;
  }

  .machine-hint {
    display: none;
  }

  .pulse-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .pulse-note {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 76px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 70px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions {
    margin-inline: auto;
  }

  .hero-intro {
    margin-inline: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .live-feed {
    margin-inline: auto;
    text-align: left;
  }

  .machine-wrap {
    width: min(100%, 455px);
    margin-top: 35px;
    justify-self: center;
  }

  .section-heading,
  .process-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .process-section {
    gap: 50px;
  }

  .process-intro p {
    max-width: 550px;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-features {
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-left: 0;
  }

  .faq-section {
    gap: 45px;
  }

  .footer-main {
    padding: 40px 0;
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > p {
    display: none;
  }

  .hero-ambient {
    display: none;
  }
}

@media (max-width: 580px) {
  .site-header,
  .hero,
  .section,
  .final-cta,
  .site-footer {
    width: min(100% - 30px, 1240px);
  }

  .site-header {
    height: 68px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .header-cta {
    height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 80px;
  }

  .cursor-light {
    display: none;
  }

  .hero h1 {
    margin: 21px 0;
    font-size: clamp(47px, 15vw, 65px);
  }

  .hero-intro {
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 10px 15px;
    font-size: 10px;
  }

  .live-feed {
    grid-template-columns: 39px 1fr auto;
    margin-top: 23px;
  }

  .machine-wrap {
    padding-inline: 6px;
    transform: scale(0.96);
  }

  .machine {
    padding: 15px;
  }

  .mini-product {
    min-height: 125px;
  }

  .tag-one {
    left: -6px;
  }

  .tag-two {
    right: -5px;
  }

  .marquee-track {
    height: 54px;
  }

  .products-section {
    padding: 120px 0 90px;
  }

  .pulse-strip {
    padding-top: 78px;
    grid-template-columns: 1fr 1fr;
  }

  .pulse-strip article {
    min-height: 112px;
    padding: 0 16px 24px;
  }

  .pulse-strip article:nth-child(2) {
    border-right: 0;
  }

  .pulse-strip article:nth-child(3) {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid var(--line);
  }

  .pulse-strip strong {
    font-size: 44px;
  }

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

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

  .product-card {
    min-height: 400px;
  }

  .process-section {
    padding: 90px 0;
  }

  .process-list li {
    grid-template-columns: 32px 52px 1fr;
    gap: 12px;
  }

  .step-icon {
    width: 50px;
    height: 50px;
  }

  .service-section {
    padding-bottom: 90px;
  }

  .service-card {
    padding: 42px 24px;
    border-radius: 22px;
  }

  .service-copy h2 br {
    display: none;
  }

  .service-features article {
    grid-template-columns: 45px 1fr;
  }

  .feature-icon {
    width: 43px;
    height: 43px;
  }

  .faq-section {
    padding: 40px 0 95px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 14px;
  }

  .final-cta {
    min-height: 460px;
    border-radius: 22px;
  }

  .final-cta h2 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .site-footer {
    margin-top: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .footer-main nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 23px;
  }

  .footer-bottom {
    padding: 23px 0 30px;
    align-items: flex-start;
    flex-direction: column;
  }

  .receipt-shell {
    padding: 26px 22px 23px;
    border-radius: 20px;
  }

  .receipt-shell h2 {
    font-size: 28px;
  }
}

.final-cta .long-cta span {
  color: var(--ink);
  -webkit-text-stroke: 0;
  font: inherit;
  letter-spacing: inherit;
}

.lucky-limit-note {
  margin: 2px 0 0 !important;
  color: #7d827b !important;
  text-align: center;
  font-size: 10px !important;
}

/* 清晰的微型贩卖机标志：商品窗、控制区、取货口 */
.mini-mark {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
  overflow: hidden;
  background: var(--lime);
  border-radius: 5px;
}

.mini-mark::before,
.mini-mark::after {
  content: none;
}

.mini-mark > i {
  position: absolute;
  display: block;
  background: var(--ink);
}

.mini-mark .mini-window {
  width: 9px;
  height: 8px;
  left: 3px;
  top: 3px;
  padding: 2px 1px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 2px;
}

.mini-mark .mini-window b {
  width: 2px;
  height: 4px;
  display: block;
  background: var(--lime);
  border-radius: 1px;
}

.mini-mark .mini-panel {
  width: 2px;
  height: 8px;
  right: 3px;
  top: 3px;
  border-radius: 1px;
}

.mini-mark .mini-panel::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0.5px;
  top: 1.5px;
  background: var(--lime);
  border-radius: 50%;
}

.mini-mark .mini-pickup {
  width: 12px;
  height: 3px;
  left: 3px;
  bottom: 2px;
  border-radius: 1px 1px 2px 2px;
}

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

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

/* 2026-06-28 商城整合与幸运卡片 */
.brand-mark {
  position: relative;
  display: block;
  padding: 0;
}

.brand-mark > span {
  position: absolute;
  display: block;
  height: auto;
  background: var(--ink);
}

.brand-mark .vm-window {
  width: 16px;
  height: 15px;
  left: 5px;
  top: 5px;
  padding: 3px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2px;
  border-radius: 3px;
}

.brand-mark .vm-window i {
  width: 3px;
  height: 5px;
  display: block;
  background: var(--lime);
  border-radius: 1px;
}

.brand-mark .vm-panel {
  width: 4px;
  height: 15px;
  top: 5px;
  right: 5px;
  border-radius: 2px;
}

.brand-mark .vm-panel i {
  width: 2px;
  height: 2px;
  margin: 3px auto 0;
  display: block;
  background: var(--lime);
  border-radius: 50%;
}

.brand-mark .vm-pickup {
  width: 22px;
  height: 4px;
  left: 5px;
  bottom: 5px;
  border-radius: 1px 1px 3px 3px;
}

.mini-mark {
  position: relative;
  background: var(--lime);
}

.mini-mark::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  left: 3px;
  top: 3px;
  background:
    radial-gradient(circle, var(--lime) 0 1px, transparent 1.5px) 1px 1px / 4px 4px,
    var(--ink);
  border-radius: 2px;
}

.mini-mark::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 3px;
  left: 3px;
  bottom: 3px;
  background: var(--ink);
  border-radius: 1px;
}

.gpt-icon {
  color: white;
  background: #10a37f;
}

.gpt-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.8;
}

.tag-two {
  right: 0;
  bottom: -18px;
}

.machine-hint {
  bottom: 48px;
}

.card-purple {
  background: var(--purple);
}

.phone-card-icon,
.gpt-card-icon,
.rocket-card-icon,
.account-card-icon,
.topup-card-icon {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 27px;
  box-shadow: 9px 10px 0 rgba(0, 0, 0, 0.12);
}

.product-card .phone-card-icon {
  background: rgba(255, 255, 255, 0.78);
  transform: translateX(-50%) rotate(-4deg) translateZ(16px);
}

.phone-card-icon > span {
  position: relative;
  width: 48px;
  height: 61px;
  display: block;
  background: var(--ink);
  border-radius: 7px 7px 13px 7px;
}

.phone-card-icon > span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 14px 14px 0;
  border-color: transparent rgba(255, 255, 255, 0.78) transparent transparent;
}

.phone-card-icon > i {
  position: absolute;
  z-index: 1;
  width: 24px;
  height: 19px;
  left: 44px;
  top: 49px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(0, 0, 0, 0.2) 48% 53%, transparent 54%),
    linear-gradient(transparent 47%, rgba(0, 0, 0, 0.2) 48% 53%, transparent 54%),
    #d6bf78;
  border-radius: 3px;
}

.product-card .gpt-card-icon {
  color: white;
  background: #0b1713;
  transform: translateX(-50%) rotate(4deg) translateZ(16px);
}

.product-card .rocket-card-icon {
  color: white;
  background: #101a2b;
  transform: translateX(-50%) rotate(-3deg) translateZ(16px);
}

.product-card .account-card-icon {
  color: white;
  background: #211735;
  transform: translateX(-50%) rotate(4deg) translateZ(16px);
}

.product-card .topup-card-icon {
  color: white;
  background: #211735;
  transform: translateX(-50%) rotate(4deg) translateZ(16px);
}

.gpt-card-icon svg,
.rocket-card-icon svg,
.account-card-icon svg,
.topup-card-icon svg {
  width: 62px;
  height: 62px;
  stroke-width: 1.8;
}

.final-cta .long-cta {
  max-width: 1050px;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.16;
}

.final-cta .long-cta span {
  display: block;
  margin-top: 7px;
}

.lucky-ticket {
  background:
    radial-gradient(circle at 85% 16%, rgba(201, 255, 74, 0.28), transparent 105px),
    white;
}

.lucky-ticket blockquote {
  margin: 14px 0;
  padding: 18px 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-family: var(--font-cn);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}

.analytics-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.analytics-status i {
  width: 6px;
  height: 6px;
  display: block;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201, 255, 74, 0.7);
}

@media (max-width: 580px) {
  .tag-two {
    right: 7px;
    bottom: -14px;
  }

  .final-cta .long-cta {
    font-size: clamp(31px, 9.4vw, 45px);
  }
}

/* 2026-07-13 商城同步、转化与无障碍优化 */
.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 9px;
  font-family: var(--font-cn);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.product-card:focus-visible,
.service-card a:focus-visible,
.final-cta a:focus-visible {
  outline-color: var(--ink);
}

.mail-icon {
  color: white;
  background: #10a37f;
}

.mail-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.1;
}

.card-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.stock-badge {
  min-height: 24px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.72);
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  font-family: var(--font-cn);
  font-size: 8px;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-card[data-stock-state="available"] .stock-badge,
.product-card[data-stock-state="low"] .stock-badge {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.product-card[data-stock-state="sold-out"] .stock-badge {
  color: white;
  background: rgba(80, 30, 27, 0.88);
  border-color: rgba(80, 30, 27, 0.88);
}

.mini-product[data-stock-state="sold-out"]::after {
  content: "暂缺";
  position: absolute;
  z-index: 3;
  top: 7px;
  right: 7px;
  padding: 3px 5px;
  color: #d7dad5;
  background: rgba(6, 8, 7, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: var(--font-cn);
  font-size: 6px;
  line-height: 1;
}

.mail-card-icon {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  color: white;
  background: #0b1713;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 27px;
  box-shadow: 9px 10px 0 rgba(0, 0, 0, 0.12);
  transform: translateX(-50%) rotate(4deg) translateZ(16px);
}

.mail-card-icon svg {
  width: 62px;
  height: 62px;
  stroke-width: 1.8;
}

.service-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 26px;
}

@media (max-width: 580px) {
  .product-card {
    min-height: 350px;
  }

  .card-icon {
    top: 70px;
  }

  .stock-badge {
    min-height: 22px;
    padding-inline: 7px;
    font-size: 7px;
  }

  .card-meta {
    gap: 5px;
  }
}
