:root {
  color-scheme: dark;
  --bg: #05080b;
  --panel: rgba(8, 18, 23, 0.78);
  --panel-solid: #0a1418;
  --line: rgba(130, 247, 231, 0.18);
  --text: #effdfa;
  --muted: #96aaa8;
  --cyan: #45e9ff;
  --mint: #70f5b2;
  --amber: #ffbd59;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", "PingFang TC", sans-serif;
  --font-display: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Microsoft JhengHei", "PingFang TC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 18%, rgba(69, 233, 255, 0.14), transparent 24rem),
    radial-gradient(circle at 16% 72%, rgba(112, 245, 178, 0.1), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body.has-pointer {
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.cursor-core,
.cursor-ring,
.cursor-trail,
.pointer-spotlight {
  pointer-events: none;
  position: fixed;
  z-index: 100;
}

.cursor-core {
  left: 0;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(112, 245, 178, 0.9), 0 0 34px rgba(69, 233, 255, 0.45);
  transform: translate3d(-50%, -50%, 0);
}

.cursor-ring {
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(69, 233, 255, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(69, 233, 255, 0.22) inset;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.18s ease, height 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.cursor-ring.is-hovering {
  width: 64px;
  height: 64px;
  border-color: rgba(112, 245, 178, 0.95);
}

.cursor-trail {
  left: 0;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(69, 233, 255, 0.72);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.7);
  animation: trailFade 620ms ease-out forwards;
}

.pointer-spotlight {
  inset: 0;
  z-index: 5;
  background: radial-gradient(
    360px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(69, 233, 255, 0.105),
    rgba(112, 245, 178, 0.045) 32%,
    transparent 68%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.has-pointer .pointer-spotlight {
  opacity: 1;
}

.noise-layer,
.scan-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
}

.noise-layer {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  animation: driftGrid 18s linear infinite;
}

.scan-layer {
  background: linear-gradient(180deg, transparent 0%, rgba(69, 233, 255, 0.08) 50%, transparent 100%);
  height: 30vh;
  top: -30vh;
  animation: scan 7s ease-in-out infinite;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(5, 8, 11, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.ticker,
.terminal-bar,
.contact-strip {
  display: flex;
  align-items: center;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(69, 233, 255, 0.22), rgba(112, 245, 178, 0.1));
  box-shadow: 0 0 28px rgba(69, 233, 255, 0.28);
  color: var(--mint);
  font-family: var(--font-display);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: #c8d7d5;
  font-size: 14px;
}

.nav-links a {
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(69, 233, 255, 0.6);
}

.nav-cta,
.lang-toggle,
.primary-btn,
.secondary-btn,
.plan button,
.chat-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 700;
  line-height: 1.12;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta,
.primary-btn,
.plan button,
.chat-form button {
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  color: #031315;
  box-shadow: 0 0 30px rgba(69, 233, 255, 0.24);
}

.lang-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  min-width: 58px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 130px clamp(20px, 7vw, 92px) 88px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  animation: heroFloat 14s ease-in-out infinite;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 11, 0.94) 0%, rgba(5, 8, 11, 0.72) 39%, rgba(5, 8, 11, 0.16) 74%),
    linear-gradient(180deg, rgba(5, 8, 11, 0.05), #05080b 96%);
}

.matrix-rain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(90deg, transparent 0 90%, rgba(69, 233, 255, 0.3) 91% 92%, transparent 93%),
    repeating-linear-gradient(180deg, rgba(112, 245, 178, 0.18) 0 2px, transparent 2px 18px);
  background-size: 92px 160px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  animation: dataFall 5.4s linear infinite;
}

.hero-content {
  position: relative;
  width: min(860px, 100%);
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 rgba(112, 245, 178, 0.8);
  animation: pulse 1.6s infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 620px;
  color: #c5d5d3;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.disclaimer {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(197, 213, 211, 0.68);
  font-size: 12px;
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.ticker {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.ticker span {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(69, 233, 255, 0.2);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(5, 14, 18, 0.68);
  color: #d8fffa;
  font-family: var(--font-display);
  font-size: 13px;
}

.ticker span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  translate: -120% 0;
  animation: shimmer 3s infinite;
}

.stats-band,
.section,
.terminal-section,
.contact-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section,
.terminal-section,
.contact-strip,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  transform: translateY(-36px);
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.stat {
  min-height: 126px;
  padding: 24px;
  background: rgba(8, 18, 23, 0.9);
}

.stat span {
  display: block;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
}

.stat small {
  color: var(--muted);
}

.section,
.terminal-section {
  padding: 74px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.feature-grid,
.plan-grid,
.safety-grid,
.article-grid,
.service-brief-grid,
.bank-grid,
.payment-layout {
  display: grid;
  gap: 18px;
}

.feature-grid,
.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-brief-grid {
  grid-template-columns: repeat(4, 1fr);
}

.safety-grid {
  grid-template-columns: repeat(4, 1fr);
}

.plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.service-brief-card,
.plan,
.terminal-panel,
.safety-item,
.article-card,
.bank-card,
.purchase-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(12, 29, 34, 0.88), rgba(5, 12, 15, 0.82));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.feature-card,
.service-brief-card,
.plan,
.safety-item,
.article-card,
.bank-card,
.purchase-form {
  padding: 28px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.plan {
  display: flex;
  flex-direction: column;
}

.feature-card,
.service-brief-card,
.plan,
.terminal-panel,
.contact-strip,
.safety-item,
.article-card,
.bank-card,
.purchase-form {
  --card-x: 50%;
  --card-y: 50%;
}

.feature-card::before,
.service-brief-card::before,
.plan::before,
.terminal-panel::before,
.safety-item::before,
.article-card::before,
.bank-card::before,
.purchase-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(69, 233, 255, 0.14), transparent);
  translate: -120% 0;
  transition: translate 0.6s ease;
}

.feature-card::after,
.service-brief-card::after,
.plan::after,
.terminal-panel::after,
.contact-strip::after,
.safety-item::after,
.article-card::after,
.bank-card::after,
.purchase-form::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(
    220px circle at var(--card-x) var(--card-y),
    rgba(69, 233, 255, 0.16),
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.22s ease;
}

.feature-card:hover::after,
.service-brief-card:hover::after,
.plan:hover::after,
.terminal-panel:hover::after,
.contact-strip:hover::after,
.safety-item:hover::after,
.article-card:hover::after,
.bank-card:hover::after,
.purchase-form:hover::after {
  opacity: 1;
}

.feature-card:hover,
.service-brief-card:hover,
.plan:hover,
.safety-item:hover,
.article-card:hover,
.bank-card:hover,
.purchase-form:hover {
  transform: translateY(-8px);
  border-color: rgba(69, 233, 255, 0.48);
  box-shadow: 0 24px 70px rgba(69, 233, 255, 0.12);
}

.feature-card:hover::before,
.service-brief-card:hover::before,
.plan:hover::before,
.terminal-panel:hover::before,
.safety-item:hover::before,
.article-card:hover::before,
.bank-card:hover::before,
.purchase-form:hover::before {
  translate: 120% 0;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(112, 245, 178, 0.28);
  color: var(--mint);
  font-family: var(--font-display);
}

.feature-card p,
.plan p,
.terminal-copy p,
.section-heading p,
.safety-item p,
.article-card p,
.contact-strip p,
.bank-note,
.form-status {
  color: var(--muted);
  line-height: 1.75;
}

.section-heading .preorder-highlight {
  color: #ff9f1c;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255, 159, 28, 0.42);
}

.plans-section {
  padding-top: 86px;
}

.plans-section .section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.plans-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.08;
}

.plans-section .section-heading p {
  margin-top: 20px;
}

.plans-section .section-heading .preorder-highlight {
  margin-top: 20px;
  color: #ff9f1c;
  font-weight: 950;
  text-shadow:
    0 0 14px rgba(255, 159, 28, 0.42),
    0 0 34px rgba(255, 159, 28, 0.18);
}

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

.pricing-grid .plan {
  min-height: 540px;
  padding: 28px;
  border-color: rgba(80, 239, 199, 0.28);
  background:
    linear-gradient(145deg, rgba(8, 27, 31, 0.92), rgba(3, 10, 13, 0.88)),
    radial-gradient(circle at 14% 0%, rgba(112, 245, 178, 0.08), transparent 32%);
}

.pricing-grid .plan.is-featured {
  border-color: rgba(112, 245, 178, 0.62);
  background:
    linear-gradient(145deg, rgba(8, 39, 34, 0.95), rgba(3, 12, 13, 0.9)),
    radial-gradient(circle at 20% 0%, rgba(112, 245, 178, 0.12), transparent 34%);
}

.pricing-grid .plan-top p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.28;
}

.pricing-grid .plan > p {
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.8;
}

.plan-display-price {
  display: block;
  margin-top: auto;
  margin-bottom: 26px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 34px);
  font-weight: 950;
  line-height: 1.28;
  letter-spacing: 0;
}

.pricing-grid .plan button {
  min-height: 48px;
  border-radius: 6px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid .plan {
    min-height: 430px;
  }

  .web-free-grid,
  .web-scope-grid,
  .web-feature-set {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-brief {
  padding-top: 48px;
}

.service-brief .section-heading {
  max-width: 880px;
}

.service-brief .section-heading h2 {
  max-width: 760px;
}

.service-brief-card {
  min-height: 280px;
}

.service-brief-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 189, 89, 0.46);
  border-radius: 999px;
  background: rgba(255, 189, 89, 0.12);
  color: #ffbd59;
  font-family: var(--font-display);
  font-weight: 900;
  box-shadow: 0 0 28px rgba(255, 189, 89, 0.12);
}

.service-brief-card h3 {
  margin-bottom: 16px;
  font-size: 1.28rem;
}

.service-brief-card p {
  color: var(--muted);
  line-height: 1.8;
}

.service-brief-card-muted {
  border-color: rgba(255, 189, 89, 0.32);
  background:
    linear-gradient(145deg, rgba(28, 22, 12, 0.7), rgba(5, 12, 15, 0.82)),
    radial-gradient(circle at 18% 12%, rgba(255, 189, 89, 0.12), transparent 34%);
}

.trading-gallery-section {
  width: min(100%, 1920px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 118px clamp(16px, 3.6vw, 56px) 52px;
  overflow: hidden;
}

.trading-gallery-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: end;
  margin-bottom: 26px;
}

.trading-gallery-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.trading-gallery-copy h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
}

.trading-gallery-copy p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.trading-gallery-copy .hero-actions {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: center;
  justify-content: flex-end;
  margin-top: 0;
}

.trading-gallery-window {
  --window-neon: #ff4f7b;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 4pt solid var(--window-neon);
  background: linear-gradient(145deg, rgba(12, 29, 34, 0.92), rgba(5, 12, 15, 0.88));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 34px color-mix(in srgb, var(--window-neon) 46%, transparent),
    var(--shadow);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.trading-gallery-window[data-kind="obi"] {
  --window-neon: #45e9ff;
}

.trading-gallery-window-head {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid color-mix(in srgb, var(--window-neon) 44%, transparent);
  padding: 0 18px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--window-neon) 22%, transparent), rgba(5, 8, 11, 0.96));
}

.trading-gallery-window-head span {
  color: var(--window-neon);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 18px color-mix(in srgb, var(--window-neon) 64%, transparent);
}

.trading-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 4pt solid var(--mint);
  border-radius: 999px;
  background: rgba(3, 19, 21, 0.78);
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 0 20px rgba(112, 245, 178, 0.42),
    0 0 36px rgba(112, 245, 178, 0.18) inset;
  transform: translateY(-50%);
}

.trading-gallery-nav:hover {
  background: rgba(112, 245, 178, 0.14);
  box-shadow:
    0 0 26px rgba(112, 245, 178, 0.62),
    0 0 42px rgba(112, 245, 178, 0.24) inset;
}

.trading-gallery-nav-prev {
  left: 18px;
}

.trading-gallery-nav-next {
  right: 18px;
}

.trading-shot-rail {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 18px;
  scroll-padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--window-neon) rgba(255, 255, 255, 0.08);
}

.trading-shot-card {
  flex: 0 0 100%;
  margin: 0;
  background: #05080b;
  scroll-snap-align: start;
}

.trading-shot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #05080b;
}

.trading-shot-card figcaption {
  border-top: 1px solid color-mix(in srgb, var(--window-neon) 44%, transparent);
  padding: 14px 18px;
  color: #d8fffa;
  font-family: var(--font-display);
  font-weight: 800;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--window-neon) 18%, transparent), rgba(5, 8, 11, 0.96));
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 42px;
  padding: 42px;
  border-top: 1px solid rgba(112, 245, 178, 0.34);
  background: rgba(5, 13, 16, 0.76);
}

.footer-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.footer-heading h2 {
  margin: 8px 0 12px;
  font-size: 32px;
}

.footer-heading p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.footer-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(69, 233, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 800;
}

.safety-grid {
  grid-template-columns: repeat(4, 1fr);
}

.safety-item strong,
.article-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--mint);
  font-family: var(--font-display);
}

.article-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card h3 {
  margin-bottom: 18px;
}

.payment-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.bank-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.split-access-layout {
  align-items: start;
}

.single-form-layout {
  display: grid;
  max-width: 720px;
}

.bank-card h3,
.purchase-form h3 {
  margin-bottom: 22px;
}

.alpha-slots {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 159, 28, 0.55);
  background: rgba(255, 159, 28, 0.09);
  color: #ffbd59;
  font-size: 0.92rem;
  font-weight: 700;
}

.alpha-slots strong {
  color: #ff9f1c;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.alpha-slots strong.is-full {
  color: #ff6b6b;
}

.alpha-slots small {
  color: var(--muted);
  font-weight: 600;
}

.intent-options {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.intent-option,
.acknowledgement {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(69, 233, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.intent-option {
  position: relative;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.intent-option:has(input:checked) {
  border-color: rgba(95, 242, 178, 0.95);
  background:
    linear-gradient(135deg, rgba(95, 242, 178, 0.18), rgba(69, 233, 255, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 0 0 1px rgba(95, 242, 178, 0.55),
    0 0 24px rgba(95, 242, 178, 0.22);
  transform: translateY(-1px);
}

.intent-option:has(input:checked)::after {
  content: "Selected";
  position: absolute;
  top: 12px;
  right: 12px;
  color: #5ff2b2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intent-option:has(input:checked) strong {
  color: #5ff2b2;
}

.intent-option input,
.acknowledgement input {
  width: auto;
  min-width: 18px;
  margin-top: 4px;
}

.intent-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.intent-option small,
.acknowledgement span {
  color: var(--muted);
  line-height: 1.65;
}

.acknowledgement.is-muted {
  opacity: 0.72;
}

.preorder-note {
  margin: 18px 0;
  padding: 18px;
  border-left: 3px solid #ff9f1c;
  background: rgba(255, 159, 28, 0.08);
}

.preorder-note h4 {
  margin-bottom: 10px;
  color: #ffbd59;
}

.preorder-note p + p {
  margin-top: 10px;
}

.bank-transfer-btn {
  background: linear-gradient(90deg, var(--cyan), var(--mint)) !important;
}

.cat-donation-section {
  position: relative;
}

.cat-donation-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(280px, 430px);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  justify-content: center;
}

.cat-donation-photo {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 89, 0.34);
  border-radius: 8px;
  background: rgba(255, 189, 89, 0.06);
  padding: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.cat-donation-photo img {
  display: block;
  width: 100%;
  max-height: 430px;
  height: auto;
  min-height: 0;
  border-radius: 6px;
  object-fit: contain;
}

.cat-donation-form {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 189, 89, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(39, 24, 8, 0.9), rgba(5, 15, 17, 0.88)),
    radial-gradient(circle at 14% 0%, rgba(255, 189, 89, 0.18), transparent 36%);
}

.cat-donation-form label {
  display: grid;
  gap: 8px;
  color: #f3e4ca;
  font-weight: 850;
}

.cat-donation-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0 12px;
  outline: 0;
}

.cat-donation-form select option {
  background: #0a1418;
  color: var(--text);
}

.cat-donation-form select:focus {
  border-color: rgba(255, 189, 89, 0.6);
}

.cat-donation-btn {
  background: linear-gradient(90deg, #ffbd59, #ff7ab6, #70f5b2) !important;
  color: #061014 !important;
  box-shadow: 0 18px 46px rgba(255, 189, 89, 0.2);
}

.purchase-steps {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.compact-steps {
  gap: 8px;
  margin-bottom: 16px;
}

.purchase-steps li {
  padding-left: 6px;
  color: var(--text);
  line-height: 1.75;
}

.delivery-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.delivery-step {
  position: relative;
  min-height: 230px;
  padding: 24px 20px;
  border: 1px solid rgba(80, 239, 199, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 31, 35, 0.95), rgba(4, 12, 16, 0.9)),
    radial-gradient(circle at 20% 0%, rgba(70, 220, 242, 0.16), transparent 38%);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.delivery-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 189, 89, 0.7);
  border-radius: 50%;
  color: #ffbd59;
  font-weight: 900;
  background: rgba(255, 189, 89, 0.08);
}

.delivery-step h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.delivery-step p {
  color: var(--muted);
  line-height: 1.75;
}

.delivery-note {
  margin-top: 18px;
  color: #ffbd59;
  font-weight: 800;
}

.delivery-support-note {
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(112, 245, 178, 0.38);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(112, 245, 178, 0.1), rgba(69, 233, 255, 0.05));
  box-shadow: 0 18px 44px rgba(112, 245, 178, 0.08);
}

.delivery-support-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-weight: 900;
}

.delivery-support-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.delivery-faq-cta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.install-faq-btn {
  grid-column: 4 / 6;
  justify-content: center;
  min-height: 56px;
  border: 1px solid rgba(255, 189, 89, 0.72);
  background: linear-gradient(90deg, #ffbd59, #45e9ff, #70f5b2);
  color: #061014;
  box-shadow: 0 18px 48px rgba(255, 189, 89, 0.2), 0 0 34px rgba(69, 233, 255, 0.22);
}

.exchange-implementation {
  margin-top: 34px;
}

.compact-heading {
  margin-bottom: 18px;
}

.compact-heading h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.exchange-grid {
  display: grid;
  gap: 14px;
}

.compact-exchange-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.faq-exchange-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.exchange-card {
  border: 1px solid rgba(80, 239, 199, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(10, 29, 34, 0.92), rgba(4, 11, 15, 0.86)),
    radial-gradient(circle at 12% 0%, rgba(255, 189, 89, 0.12), transparent 34%);
  padding: 18px;
}

.exchange-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #ffbd59;
  font-weight: 900;
}

.exchange-card h3 {
  margin: 4px 0 10px;
  font-size: 1rem;
}

.exchange-card p,
.exchange-card li {
  color: var(--muted);
  line-height: 1.75;
}

.exchange-card ol {
  margin: 0 0 14px;
  padding-left: 20px;
}

.exchange-card details {
  margin-top: 10px;
  border-top: 1px solid rgba(80, 239, 199, 0.18);
  padding-top: 10px;
}

.exchange-card summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.exchange-page-card {
  display: block;
  position: relative;
  overflow: hidden;
  color: inherit;
  isolation: isolate;
  transition:
    border-color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.exchange-page-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 189, 89, 0.18) 38%, rgba(69, 233, 255, 0.2) 50%, transparent 64%),
    radial-gradient(circle at 22% 14%, rgba(112, 245, 178, 0.16), transparent 34%);
  opacity: 0;
  transform: translateX(-48%) skewX(-14deg);
  transition: opacity 0.22s ease, transform 0.56s ease;
}

.exchange-page-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffbd59, #45e9ff, #70f5b2, transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.exchange-page-card:hover,
.exchange-page-card:focus-visible {
  border-color: rgba(255, 189, 89, 0.74);
  box-shadow:
    0 22px 54px rgba(255, 189, 89, 0.14),
    0 0 34px rgba(69, 233, 255, 0.16),
    inset 0 0 26px rgba(112, 245, 178, 0.07);
  transform: translateY(-5px);
}

.exchange-page-card:hover::before,
.exchange-page-card:focus-visible::before {
  opacity: 1;
  transform: translateX(36%) skewX(-14deg);
}

.exchange-page-card:hover::after,
.exchange-page-card:focus-visible::after {
  opacity: 0.95;
  transform: scaleX(1);
}

.exchange-page-card:hover span,
.exchange-page-card:focus-visible span {
  color: #ffd48a;
  text-shadow: 0 0 18px rgba(255, 189, 89, 0.36);
}

.exchange-page-card small {
  display: inline-flex;
  margin-top: 12px;
  color: var(--mint);
  font-weight: 800;
  transition: color 0.22s ease, transform 0.22s ease, text-shadow 0.22s ease;
}

.exchange-page-card:hover small,
.exchange-page-card:focus-visible small {
  color: #45e9ff;
  text-shadow: 0 0 18px rgba(69, 233, 255, 0.38);
  transform: translateX(3px);
}

.common-api-faq {
  margin-top: 16px;
}

.purchase-form {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.purchase-form.is-highlighted {
  animation: formPulse 1.2s ease;
}

.form-copy {
  display: grid;
  gap: 12px;
}

.emphasis-note {
  color: var(--mint);
  font-weight: 900;
}

.form-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.checkout-note {
  margin-top: 4px;
  font-size: 0.9rem;
}

.purchase-form label {
  display: grid;
  gap: 8px;
  color: #c8d7d5;
  font-weight: 700;
}

.purchase-form input,
.purchase-form select,
.purchase-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 12px;
  outline: 0;
}

.purchase-form select option {
  background: #0a1418;
  color: var(--text);
}

.purchase-form textarea {
  min-height: 96px;
  resize: vertical;
}

.purchase-form input:focus,
.purchase-form select:focus,
.purchase-form textarea:focus {
  border-color: rgba(69, 233, 255, 0.55);
}

.form-status {
  margin: 0;
}

.form-status.is-success {
  color: var(--mint);
}

.form-status.is-error {
  color: var(--danger);
}

.web-studio-page .brand-mark {
  border-color: rgba(255, 98, 239, 0.42);
  background: rgba(82, 16, 86, 0.56);
  box-shadow: 0 0 34px rgba(255, 98, 239, 0.18);
}

.web-studio-page .nav-cta,
.web-studio-page .primary-btn {
  background: linear-gradient(90deg, #ff62ef, #45e9ff);
  color: #061014;
  box-shadow: 0 16px 44px rgba(255, 98, 239, 0.22);
}

.web-studio-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 4, 11, 0.9), rgba(3, 4, 11, 0.54) 46%, rgba(24, 3, 30, 0.7)),
    radial-gradient(circle at 78% 18%, rgba(255, 98, 239, 0.26), transparent 36%);
}

.web-free-grid,
.web-scope-grid {
  display: grid;
  gap: 18px;
}

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

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

.web-free-grid article,
.web-scope-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 98, 239, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(23, 8, 28, 0.9), rgba(5, 12, 18, 0.88)),
    radial-gradient(circle at 12% 0%, rgba(255, 98, 239, 0.13), transparent 36%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.web-free-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ff9cf5;
  font-weight: 900;
}

.web-free-grid h3,
.web-scope-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.22;
}

.web-free-grid p,
.web-scope-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.web-request-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 98, 239, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(21, 7, 26, 0.92), rgba(4, 13, 17, 0.9)),
    radial-gradient(circle at 16% 0%, rgba(255, 98, 239, 0.14), transparent 34%);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.25),
    inset 0 0 44px rgba(255, 98, 239, 0.06);
}

.web-form-slotbar,
.web-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.web-form-slot-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
}

.web-slot-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ff9cf5;
  font-weight: 900;
}

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

.web-request-form label,
.web-feature-set {
  color: #d7e5e3;
  font-weight: 800;
}

.web-request-form label {
  display: grid;
  gap: 8px;
}

.web-request-form input,
.web-request-form select,
.web-request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 12px;
  outline: 0;
}

.web-request-form select option {
  background: #0a1418;
  color: var(--text);
}

.web-request-form textarea {
  resize: vertical;
}

.web-request-form input:focus,
.web-request-form select:focus,
.web-request-form textarea:focus {
  border-color: rgba(255, 98, 239, 0.58);
}

.web-feature-set {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.web-feature-set legend {
  padding: 0 8px;
  color: #ff9cf5;
  font-weight: 900;
}

.web-feature-set label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
}

.web-feature-set input {
  width: auto;
  accent-color: #ff62ef;
}

.web-notes-label {
  grid-column: 1 / -1;
}

.web-form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.web-form-status.is-success {
  color: var(--mint);
}

.web-form-status.is-error {
  color: var(--danger);
}

.crawler-service-page .brand-mark {
  border-color: rgba(69, 233, 255, 0.46);
  background: rgba(10, 54, 78, 0.58);
  box-shadow: 0 0 34px rgba(69, 233, 255, 0.2);
}

.crawler-service-page .nav-cta,
.crawler-service-page .primary-btn {
  background: linear-gradient(90deg, #45e9ff, #ffbd59);
  box-shadow: 0 16px 44px rgba(69, 233, 255, 0.2);
}

.crawler-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 4, 11, 0.92), rgba(4, 15, 25, 0.54) 48%, rgba(27, 17, 4, 0.62)),
    radial-gradient(circle at 78% 18%, rgba(69, 233, 255, 0.24), transparent 34%),
    radial-gradient(circle at 62% 72%, rgba(255, 189, 89, 0.18), transparent 36%);
}

.crawler-service-page .web-free-grid article,
.crawler-service-page .web-scope-grid article,
.crawler-service-page .web-request-form {
  border-color: rgba(69, 233, 255, 0.3);
  background:
    linear-gradient(145deg, rgba(6, 24, 34, 0.92), rgba(4, 12, 18, 0.9)),
    radial-gradient(circle at 14% 0%, rgba(69, 233, 255, 0.13), transparent 34%);
}

.crawler-service-page .web-free-grid span,
.crawler-service-page .web-slot-tag,
.crawler-service-page .web-feature-set legend {
  color: #45e9ff;
}

.crawler-service-page .web-request-form input:focus,
.crawler-service-page .web-request-form select:focus,
.crawler-service-page .web-request-form textarea:focus {
  border-color: rgba(69, 233, 255, 0.58);
}

.crawler-service-page .web-feature-set input {
  accent-color: #45e9ff;
}

.terminal-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 42px;
}

.terminal-panel {
  min-height: 410px;
  padding: 0;
}

.terminal-bar {
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--danger);
}

.terminal-bar span:nth-child(2) {
  background: var(--amber);
}

.terminal-bar span:nth-child(3) {
  background: var(--mint);
}

.terminal-bar strong {
  margin-left: 10px;
  color: #c8d7d5;
  font-family: var(--font-display);
  font-size: 13px;
}

.terminal-lines {
  padding: 24px;
  font-family: var(--font-display);
}

.terminal-lines p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  color: #dff8f5;
}

.terminal-lines span {
  color: var(--cyan);
}

.workflow-video-frame {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(145deg, rgba(3, 10, 12, 0.92), rgba(5, 18, 18, 0.82)),
    radial-gradient(circle at 72% 24%, rgba(112, 245, 178, 0.12), transparent 36%);
}

.workflow-video-frame::before,
.workflow-video-frame::after {
  z-index: 2;
  pointer-events: none;
}

.workflow-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(69, 233, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(69, 233, 255, 0.08), transparent 16%),
    radial-gradient(circle at 50% 100%, rgba(112, 245, 178, 0.1), transparent 42%);
}

.workflow-video {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.waveform {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 88px;
  margin: 0 24px;
  padding: 20px;
  border: 1px solid rgba(69, 233, 255, 0.13);
  background: rgba(69, 233, 255, 0.04);
}

.waveform i {
  flex: 1;
  min-width: 12px;
  background: linear-gradient(180deg, var(--cyan), var(--mint));
  animation: bars 1.25s ease-in-out infinite;
}

.waveform i:nth-child(2n) {
  animation-delay: -0.3s;
}

.waveform i:nth-child(3n) {
  animation-delay: -0.7s;
}

.plan-price {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
}

.plan-price span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.plan-price strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 31px);
  line-height: 1.08;
}

.plan-price small {
  color: var(--amber);
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 0 16px rgba(255, 176, 45, 0.22);
}

.custom-price-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 176, 45, 0.36);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 176, 45, 0.12), rgba(5, 18, 18, 0.82));
  color: var(--text);
}

.custom-price-note strong {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 20px;
}

.custom-price-note span {
  color: #d8e8e5;
  font-weight: 700;
}

.plan-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: #d8e8e5;
  line-height: 1.65;
}

.plan-list li::marker {
  color: var(--mint);
}

.plan button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  text-align: center;
  width: 100%;
}

.featured-plan {
  border-color: rgba(112, 245, 178, 0.52);
  background: linear-gradient(145deg, rgba(8, 38, 35, 0.96), rgba(5, 12, 15, 0.9));
}

.package-comparison {
  margin-top: 34px;
}

.order-primer {
  margin: -12px 0 28px;
  border: 1px solid rgba(80, 239, 199, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5, 22, 24, 0.9), rgba(3, 9, 12, 0.86)),
    radial-gradient(circle at 84% 10%, rgba(112, 245, 178, 0.14), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(255, 189, 89, 0.1), transparent 34%);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.order-primer-head {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 22px;
  align-items: end;
  margin-bottom: 18px;
}

.order-primer-head h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
}

.order-primer-head p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.plan-note {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 159, 28, 0.35);
  background: rgba(255, 159, 28, 0.08);
  color: #ffbd59;
  font-size: 0.9rem;
  font-weight: 750;
}

.hardware-note {
  box-shadow: 0 0 24px rgba(255, 159, 28, 0.08);
}

.plan-inline-highlight {
  display: inline;
  color: var(--mint);
  font-weight: 900;
  text-shadow:
    0 0 14px rgba(112, 245, 178, 0.42),
    0 0 28px rgba(69, 233, 255, 0.22);
}

.package-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-compare {
  overflow: hidden;
  border: 1px solid rgba(80, 239, 199, 0.18);
  border-radius: 8px;
  background: rgba(2, 12, 15, 0.58);
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(90px, 0.7fr));
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid rgba(80, 239, 199, 0.12);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row > * {
  padding: 12px 14px;
}

.compare-row > span:first-child {
  color: #dff8f5;
  font-weight: 850;
}

.compare-head {
  min-height: 62px;
  background:
    linear-gradient(90deg, rgba(112, 245, 178, 0.12), rgba(69, 233, 255, 0.08)),
    rgba(8, 26, 30, 0.72);
}

.compare-head span {
  color: var(--mint);
  font-family: var(--font-display);
  font-weight: 950;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 950;
}

.mark.yes {
  border: 1px solid rgba(112, 245, 178, 0.58);
  background: rgba(112, 245, 178, 0.14);
  color: var(--mint);
  box-shadow: 0 0 18px rgba(112, 245, 178, 0.16);
}

.mark.no {
  border: 1px solid rgba(255, 107, 107, 0.42);
  background: rgba(255, 107, 107, 0.08);
  color: #ff9c9c;
}

.package-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-height: 164px;
  border: 1px solid rgba(80, 239, 199, 0.2);
  border-radius: 8px;
  background: rgba(2, 12, 15, 0.58);
  padding: 16px;
}

.package-choice.is-featured {
  border-color: rgba(255, 189, 89, 0.52);
  background:
    linear-gradient(145deg, rgba(30, 24, 9, 0.56), rgba(2, 12, 15, 0.62)),
    radial-gradient(circle at 100% 0%, rgba(255, 189, 89, 0.16), transparent 38%);
}

.choice-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 189, 89, 0.46);
  border-radius: 50%;
  color: #ffbd59;
  font-family: var(--font-display);
  font-weight: 950;
}

.choice-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.choice-title h4 {
  margin: 0;
  font-size: 1.12rem;
}

.choice-title code {
  flex: 0 0 auto;
  border: 1px solid rgba(112, 245, 178, 0.3);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(112, 245, 178, 0.08);
  color: #8ef9df;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
}

.choice-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.choice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.choice-tags span {
  border: 1px solid rgba(69, 233, 255, 0.2);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(69, 233, 255, 0.07);
  color: #dff8f5;
  font-size: 0.8rem;
  font-weight: 800;
}

.package-meta-strip {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 10px;
  margin-top: 12px;
}

.package-meta-strip span {
  border: 1px solid rgba(80, 239, 199, 0.16);
  border-radius: 8px;
  background: rgba(8, 26, 30, 0.44);
  padding: 12px 14px;
  color: var(--muted);
  line-height: 1.65;
}

.package-meta-strip strong {
  color: var(--mint);
}

.package-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.package-card {
  min-height: 100%;
  border: 1px solid rgba(80, 239, 199, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 24, 28, 0.92), rgba(3, 10, 13, 0.88)),
    radial-gradient(circle at 100% 0%, rgba(69, 233, 255, 0.12), transparent 34%);
  padding: 20px;
}

.package-card-featured {
  border-color: rgba(255, 189, 89, 0.48);
  background:
    linear-gradient(145deg, rgba(26, 24, 10, 0.82), rgba(3, 10, 13, 0.88)),
    radial-gradient(circle at 88% 0%, rgba(255, 189, 89, 0.18), transparent 38%);
}

.package-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.package-card h4 {
  margin: 0;
  font-size: 1.12rem;
}

.package-card code {
  flex: 0 0 auto;
  border: 1px solid rgba(112, 245, 178, 0.28);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(112, 245, 178, 0.08);
  color: #8ef9df;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
}

.package-card p {
  color: var(--muted);
  line-height: 1.75;
}

.package-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.package-badges span {
  border: 1px solid rgba(69, 233, 255, 0.22);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(69, 233, 255, 0.07);
  color: #dff8f5;
  font-size: 0.82rem;
  font-weight: 800;
}

.package-scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.package-scope p {
  margin: 0;
  border: 1px solid rgba(80, 239, 199, 0.18);
  border-radius: 8px;
  background: rgba(8, 26, 30, 0.52);
  padding: 14px 16px;
  color: var(--muted);
  line-height: 1.7;
}

.package-scope strong {
  color: var(--mint);
}

.package-note {
  margin-top: 14px;
}

.contact-strip {
  position: relative;
  overflow: hidden;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 110px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(100deg, rgba(69, 233, 255, 0.14), rgba(112, 245, 178, 0.08), rgba(255, 189, 89, 0.1));
}

.contact-strip h2 {
  margin-bottom: 0;
}

.guide-shell {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0 90px;
}

.guide-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.guide-back {
  display: inline-flex;
  color: var(--mint);
  font-weight: 700;
}

.official-entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(255, 189, 89, 0.82);
  border-radius: 8px;
  background: linear-gradient(135deg, #ff8a1f, #ffbd59);
  color: #091012;
  font-weight: 950;
  box-shadow:
    0 0 22px rgba(255, 138, 31, 0.42),
    0 14px 36px rgba(255, 189, 89, 0.16);
}

.official-entry-btn:hover,
.official-entry-btn:focus-visible {
  color: #091012;
  transform: translateY(-1px);
  box-shadow:
    0 0 30px rgba(255, 138, 31, 0.58),
    0 18px 42px rgba(255, 189, 89, 0.2);
}

.official-entry-bottom {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.guide-article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 13, 16, 0.84);
  padding: clamp(24px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.guide-article h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
}

.guide-article h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 34px);
}

.guide-article p {
  color: #c5d5d3;
  line-height: 1.9;
}

.guide-article ul {
  color: #c5d5d3;
  line-height: 1.9;
}

.guide-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid rgba(80, 239, 199, 0.22);
  border-radius: 8px;
  background: rgba(3, 12, 15, 0.7);
}

.guide-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.guide-table th,
.guide-table td {
  border-bottom: 1px solid rgba(80, 239, 199, 0.14);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.guide-table th {
  color: var(--mint);
  font-size: 0.92rem;
  letter-spacing: 0;
  background: rgba(80, 239, 199, 0.08);
}

.guide-table td {
  color: #c5d5d3;
  line-height: 1.7;
}

.guide-table tr:last-child td {
  border-bottom: 0;
}

.guide-article li + li {
  margin-top: 8px;
}

.guide-article pre {
  overflow-x: auto;
  margin: 14px 0;
  padding: 16px;
  border: 1px solid rgba(69, 233, 255, 0.18);
  border-radius: 8px;
  background: rgba(1, 7, 10, 0.72);
}

.guide-article code {
  color: #8ef9df;
  font-family: Consolas, "Courier New", monospace;
}

.guide-lead {
  font-size: 20px;
}

.faq-panel {
  margin-top: 34px;
}

.quick-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quick-checklist div,
.support-checklist,
.install-faq-list details {
  border: 1px solid rgba(80, 239, 199, 0.25);
  border-radius: 8px;
  background: rgba(8, 26, 30, 0.72);
}

.quick-checklist div {
  padding: 20px;
}

.quick-checklist strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
}

.install-faq-list {
  display: grid;
  gap: 12px;
}

.install-faq-list details {
  padding: 18px 20px;
}

.install-faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.install-faq-list summary::marker {
  color: var(--mint);
}

.install-faq-list p:last-child {
  margin-bottom: 0;
}

.support-checklist {
  padding: 22px;
}

.guide-cta {
  margin-top: 42px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(100deg, rgba(69, 233, 255, 0.12), rgba(112, 245, 178, 0.08));
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
}

.chat-launcher {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(112, 245, 178, 0.5);
  border-radius: 999px;
  background: rgba(5, 18, 18, 0.88);
  color: var(--text);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42), 0 0 30px rgba(112, 245, 178, 0.2);
  backdrop-filter: blur(18px);
}

.chat-launcher span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 13, 16, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.chat-widget.is-open .chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-panel header,
.chat-form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.chat-panel header {
  justify-content: space-between;
}

.chat-panel small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.chat-support-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #70f5b2;
  font-size: 0.78rem;
  font-weight: 800;
}

.chat-support-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
}

.chat-support-status.is-offline {
  color: #8ea09d;
}

.chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 22px;
}

.chat-messages {
  display: grid;
  gap: 10px;
  min-height: 220px;
  max-height: 320px;
  overflow: auto;
  padding: 16px;
}

.chat-messages p {
  width: fit-content;
  max-width: 86%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  color: #eaf8f6;
  line-height: 1.55;
}

.chat-messages .bot {
  background: rgba(69, 233, 255, 0.12);
  border: 1px solid rgba(69, 233, 255, 0.16);
}

.chat-messages .user {
  justify-self: end;
  background: rgba(112, 245, 178, 0.13);
  border: 1px solid rgba(112, 245, 178, 0.18);
}

.chat-faq {
  max-height: 220px;
  overflow: auto;
  padding: 0 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-faq-title {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 12px 0 8px;
  background: rgba(5, 13, 16, 0.96);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.chat-faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.chat-faq summary {
  cursor: pointer;
  padding: 10px 0;
  color: #eaf8f6;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.chat-faq summary::marker {
  color: var(--accent);
}

.chat-faq p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.chat-form {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.chat-form input {
  min-width: 0;
  flex: 1;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 0 12px;
  outline: 0;
}

.chat-form input:focus {
  border-color: rgba(69, 233, 255, 0.55);
}

@keyframes driftGrid {
  to {
    background-position: 42px 42px;
  }
}

@keyframes scan {
  0%, 100% {
    transform: translateY(0);
    opacity: 0;
  }
  15%, 75% {
    opacity: 1;
  }
  100% {
    transform: translateY(140vh);
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.06) translate3d(1.2%, -1%, 0);
  }
}

@keyframes dataFall {
  to {
    background-position: 0 160px;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(112, 245, 178, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(112, 245, 178, 0);
  }
}

@keyframes shimmer {
  45%, 100% {
    translate: 120% 0;
  }
}

@keyframes bars {
  0%, 100% {
    height: 22%;
  }
  50% {
    height: 96%;
  }
}

@keyframes formPulse {
  0% {
    border-color: rgba(255, 189, 89, 0.96);
    box-shadow:
      0 0 0 1px rgba(255, 189, 89, 0.4),
      0 0 36px rgba(255, 189, 89, 0.26);
  }
  100% {
    border-color: var(--line);
    box-shadow: var(--shadow);
  }
}

@keyframes trailFade {
  0% {
    opacity: 0.8;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.08);
  }
}

@media (max-width: 860px) {
  body.has-pointer {
    cursor: auto;
  }

  .cursor-core,
  .cursor-ring,
  .cursor-trail,
  .pointer-spotlight {
    display: none;
  }

  .noise-layer,
  .scan-layer,
  .matrix-rain {
    display: none;
  }

  .hero-image,
  .pulse-dot,
  .ticker span::after {
    animation: none;
  }

  .hero-image {
    filter: saturate(1.04) contrast(1.02);
  }

  .feature-compare {
    overflow-x: auto;
  }

  .compare-row {
    min-width: 720px;
  }

  .topbar {
    position: sticky;
    padding: 14px 18px;
    background: rgba(5, 8, 11, 0.9);
    backdrop-filter: none;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding: 70px 20px 72px;
  }

  .trading-gallery-section {
    padding: 76px 16px 42px;
  }

  .trading-gallery-copy {
    grid-template-columns: 1fr;
  }

  .trading-gallery-copy .hero-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
  }

  .trading-gallery-copy h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .trading-gallery-nav {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .trading-gallery-nav-prev {
    left: 10px;
  }

  .trading-gallery-nav-next {
    right: 10px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 8, 11, 0.92), rgba(5, 8, 11, 0.6)),
      linear-gradient(180deg, rgba(5, 8, 11, 0.05), #05080b 96%);
  }

  .stats-band,
  .feature-grid,
  .service-brief-grid,
  .plan-grid,
  .safety-grid,
  .article-grid,
  .footer-grid,
  .bank-grid,
  .payment-layout,
  .delivery-flow,
  .delivery-faq-cta,
  .compact-exchange-grid,
  .faq-exchange-grid,
    .quick-checklist,
    .order-primer-head,
    .package-choice-grid,
    .package-meta-strip,
    .package-card-grid,
    .package-scope,
    .terminal-section,
    .cat-donation-layout {
    grid-template-columns: 1fr;
  }

  .cat-donation-photo {
    justify-self: center;
    max-width: min(100%, 320px);
  }

  .cat-donation-photo img {
    max-height: 390px;
  }

  .install-faq-btn {
    grid-column: 1;
  }

  .delivery-step {
    min-height: auto;
  }

  .stats-band {
    transform: none;
    margin-top: 28px;
  }

  .section,
  .terminal-section {
    padding: 58px 0;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    width: calc(100% - 36px);
    padding: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.gateway-page {
  min-height: 100vh;
  background: #03040b;
}

.gateway-page.gateway-has-cursor,
.gateway-page.gateway-has-cursor * {
  cursor: none;
}

.gateway-page .topbar {
  min-height: 94px;
  background: rgba(4, 6, 12, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.gateway-page .brand {
  gap: 16px;
}

.gateway-page .brand-mark {
  width: 52px;
  height: 52px;
  border-color: rgba(112, 245, 178, 0.4);
  background: rgba(25, 92, 86, 0.55);
  box-shadow: 0 0 36px rgba(112, 245, 178, 0.18);
  font-size: 17px;
}

.gateway-page .brand strong {
  font-size: 20px;
}

.gateway-page .brand small {
  font-size: 15px;
}

.gateway-page .nav-links,
.gateway-page .topbar-actions {
  display: none;
}

.gateway-hero {
  min-height: 100svh;
  padding: 96px clamp(18px, 5vw, 70px) 96px;
  background:
    radial-gradient(circle at 50% 40%, rgba(246, 44, 222, 0.12), transparent 32%),
    radial-gradient(circle at 42% 46%, rgba(95, 245, 120, 0.12), transparent 28%),
    #03040b;
}

.gateway-hero > picture,
.gateway-hero > .hero-overlay,
.gateway-hero > .matrix-rain,
.gateway-hero > .hero-content {
  display: none;
}

.gateway-blackhole,
.gateway-vignette {
  position: absolute;
  inset: 0;
}

.gateway-blackhole {
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
}

.gateway-blackhole.is-ready {
  opacity: 1;
}

.gateway-vignette {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 4, 11, 0.16) 0%, transparent 32%, rgba(3, 4, 11, 0.62) 100%),
    radial-gradient(circle at 55.5% 43%, transparent 0 15%, rgba(3, 4, 11, 0.16) 43%, rgba(3, 4, 11, 0.9) 100%);
}

.gateway-content {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: calc(100svh - 144px);
  align-items: end;
  justify-items: center;
  padding-top: 26vh;
}

.gateway-card-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  width: min(1480px, 100%);
}

.gateway-card {
  position: relative;
  display: grid;
  min-height: 228px;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
  border: 3px solid rgba(112, 245, 178, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(18, 77, 46, 0.72), rgba(6, 21, 24, 0.62)),
    rgba(4, 10, 14, 0.72);
  box-shadow:
    0 0 34px rgba(112, 245, 178, 0.34),
    inset 0 0 42px rgba(112, 245, 178, 0.12);
  color: var(--text);
  text-align: center;
  transform: translateY(0);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.gateway-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.18) 43%, transparent 50%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 45%);
  opacity: 0.55;
  transform: translateX(-18%);
}

.gateway-card:hover,
.gateway-card:focus-visible {
  transform: translateY(-8px);
  outline: 0;
  box-shadow:
    0 0 46px rgba(112, 245, 178, 0.46),
    inset 0 0 54px rgba(112, 245, 178, 0.16);
}

.gateway-card-website {
  border-color: rgba(247, 43, 226, 0.92);
  background:
    linear-gradient(135deg, rgba(92, 18, 99, 0.72), rgba(22, 5, 34, 0.62)),
    rgba(18, 5, 24, 0.72);
  box-shadow:
    0 0 34px rgba(247, 43, 226, 0.3),
    inset 0 0 42px rgba(247, 43, 226, 0.12);
}

.gateway-card-website:hover,
.gateway-card-website:focus-visible {
  box-shadow:
    0 0 46px rgba(247, 43, 226, 0.48),
    inset 0 0 54px rgba(247, 43, 226, 0.16);
}

.gateway-card-crawler {
  border-color: rgba(69, 233, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(19, 58, 88, 0.72), rgba(5, 16, 31, 0.66)),
    rgba(4, 12, 23, 0.74);
  box-shadow:
    0 0 34px rgba(69, 233, 255, 0.28),
    inset 0 0 42px rgba(255, 159, 28, 0.1);
}

.gateway-card-crawler:hover,
.gateway-card-crawler:focus-visible {
  box-shadow:
    0 0 46px rgba(69, 233, 255, 0.42),
    inset 0 0 54px rgba(255, 159, 28, 0.14);
}

.gateway-card-partner {
  border-color: rgba(255, 189, 89, 0.92);
  background:
    linear-gradient(135deg, rgba(82, 54, 12, 0.72), rgba(10, 24, 25, 0.66)),
    rgba(20, 14, 5, 0.74);
  box-shadow:
    0 0 34px rgba(255, 189, 89, 0.3),
    inset 0 0 42px rgba(112, 245, 178, 0.1);
}

.gateway-card-partner:hover,
.gateway-card-partner:focus-visible {
  box-shadow:
    0 0 46px rgba(255, 189, 89, 0.42),
    inset 0 0 54px rgba(112, 245, 178, 0.14);
}

.gateway-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--mint);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.gateway-card-website .gateway-kicker {
  color: #ff79ed;
}

.gateway-card-crawler .gateway-kicker {
  color: #45e9ff;
}

.gateway-card-partner .gateway-kicker {
  color: #ffbd59;
}

.gateway-kicker em {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0;
}

.gateway-card strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: 0;
}

.gateway-card small {
  position: relative;
  z-index: 1;
  color: rgba(238, 255, 251, 0.78);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
}

.gateway-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2.4vw, 30px);
  padding: 14px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 4, 11, 0.72);
  color: rgba(238, 255, 251, 0.68);
  font-size: 14px;
  backdrop-filter: blur(16px);
}

.gateway-footer strong {
  color: var(--text);
  font-weight: 700;
}

.gateway-footer a {
  color: var(--mint);
}

.gateway-footer a:hover {
  text-shadow: 0 0 16px rgba(112, 245, 178, 0.7);
}

.gateway-cursor,
.gateway-cursor-halo,
.gateway-cursor-orbit-dot,
.gateway-cursor-trail {
  pointer-events: none;
  position: fixed;
  z-index: 120;
  border-radius: 999px;
}

.gateway-cursor-halo,
.gateway-cursor-orbit-dot,
.gateway-cursor-trail {
  display: none;
}

.gateway-cursor {
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 50% 50%, #000 0 38%, rgba(0, 0, 0, 0.72) 39% 52%, rgba(112, 245, 178, 0.96) 54% 66%, transparent 72%);
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.78),
    0 0 24px rgba(112, 245, 178, 0.75),
    0 0 54px rgba(247, 43, 226, 0.34);
}

.gateway-cursor-halo {
  display: none;
}

.gateway-cursor-halo::before,
.gateway-cursor-halo::after {
  display: none;
}

.gateway-cursor-orbit-dot {
  display: none;
}

.gateway-cursor-trail {
  display: none;
}

.gateway-cursor-trail.gateway-cursor-pink {
  display: none;
}

.gateway-cursor-pink .gateway-cursor {
  background:
    radial-gradient(circle at 50% 50%, #000 0 38%, rgba(0, 0, 0, 0.72) 39% 52%, rgba(247, 43, 226, 0.96) 54% 66%, transparent 72%);
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.78),
    0 0 26px rgba(247, 43, 226, 0.78),
    0 0 56px rgba(112, 245, 178, 0.3);
}

.gateway-cursor-pink .gateway-cursor-halo {
  display: none;
}

.gateway-cursor-pink .gateway-cursor-orbit-dot {
  display: none;
}

.gateway-cursor-on-card .gateway-cursor {
  width: 22px;
  height: 22px;
  background:
    radial-gradient(circle at 50% 50%, #000 0 34%, rgba(0, 0, 0, 0.75) 36% 50%, rgba(255, 255, 255, 0.96) 52% 58%, rgba(247, 43, 226, 0.92) 62%, transparent 74%);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.86),
    0 0 38px rgba(247, 43, 226, 0.72),
    0 0 52px rgba(112, 245, 178, 0.38);
}

.gateway-cursor-on-card .gateway-cursor-halo {
  display: none;
}

.gateway-page.is-warping {
  overflow: hidden;
}

.gateway-page.is-warping .topbar {
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.gateway-page.is-warping .gateway-card {
  opacity: 0;
  filter: blur(12px) saturate(1.8);
  transform: translateY(-110px) scale(0.55) rotate(-2deg);
  transition: opacity 0.48s ease, filter 0.48s ease, transform 0.72s cubic-bezier(0.68, -0.35, 0.9, 0.44);
}

.gateway-page.is-warping .gateway-card.is-selected {
  transform: translateY(-160px) scale(0.42) rotate(4deg);
}

.gateway-warp {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow: hidden;
  background:
    radial-gradient(circle at 56% 47%, transparent 0 4%, rgba(0, 0, 0, 0.12) 9%, rgba(0, 0, 0, 0.85) 48%, #000 100%);
  animation: gatewayWarpFade 0.9s ease-in forwards;
}

.gateway-warp::before,
.gateway-warp::after,
.gateway-warp-core {
  content: "";
  position: absolute;
  left: 56%;
  top: 47%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.gateway-warp::before {
  width: min(132vw, 132vh);
  height: min(132vw, 132vh);
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(112, 245, 178, 0) 0deg 10deg,
      rgba(112, 245, 178, 0.44) 12deg 14deg,
      rgba(247, 43, 226, 0) 16deg 28deg,
      rgba(247, 43, 226, 0.42) 29deg 31deg
    );
  filter: blur(2px);
  opacity: 0;
  animation: gatewaySpiral 0.9s cubic-bezier(0.12, 0.8, 0.32, 1) forwards;
}

.gateway-warp::after {
  width: 30vw;
  height: 30vw;
  min-width: 260px;
  min-height: 260px;
  background:
    radial-gradient(circle, #000 0 34%, rgba(255, 255, 255, 0.9) 36%, rgba(112, 245, 178, 0.5) 41%, rgba(247, 43, 226, 0.3) 49%, transparent 64%);
  box-shadow:
    0 0 70px rgba(255, 255, 255, 0.55),
    0 0 130px rgba(112, 245, 178, 0.28),
    0 0 150px rgba(247, 43, 226, 0.3);
  animation: gatewayCorePulse 0.9s ease-in forwards;
}

.gateway-warp-core {
  width: 8vw;
  height: 8vw;
  min-width: 80px;
  min-height: 80px;
  background: #000;
  box-shadow: inset 0 0 32px #000;
  animation: gatewayCoreExpand 0.9s cubic-bezier(0.7, 0.02, 0.95, 0.36) forwards;
}

.gateway-warp-pink::before {
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(247, 43, 226, 0) 0deg 9deg,
      rgba(247, 43, 226, 0.55) 11deg 13deg,
      rgba(112, 245, 178, 0) 14deg 25deg,
      rgba(112, 245, 178, 0.28) 27deg 29deg
    );
}

.gateway-warp-cyan::before {
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(69, 233, 255, 0) 0deg 9deg,
      rgba(69, 233, 255, 0.55) 11deg 13deg,
      rgba(255, 159, 28, 0) 14deg 25deg,
      rgba(255, 159, 28, 0.34) 27deg 29deg
    );
}

.gateway-warp-cyan::after {
  background:
    radial-gradient(circle, #000 0 34%, rgba(255, 255, 255, 0.9) 36%, rgba(69, 233, 255, 0.52) 41%, rgba(255, 159, 28, 0.28) 49%, transparent 64%);
  box-shadow:
    0 0 70px rgba(255, 255, 255, 0.52),
    0 0 130px rgba(69, 233, 255, 0.3),
    0 0 150px rgba(255, 159, 28, 0.24);
}

@keyframes gatewayWarpFade {
  0% {
    opacity: 0;
    backdrop-filter: blur(0);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    backdrop-filter: blur(14px);
  }
}

@keyframes gatewaySpiral {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg) scale(1.24);
  }
  42% {
    opacity: 0.95;
  }
  100% {
    opacity: 0.14;
    transform: translate(-50%, -50%) rotate(520deg) scale(0.06);
  }
}

@keyframes gatewayCorePulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.36) rotate(-16deg);
  }
  34% {
    opacity: 1;
  }
  100% {
    opacity: 0.88;
    transform: translate(-50%, -50%) scale(4.8) rotate(20deg);
  }
}

@keyframes gatewayCoreExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.4);
  }
  100% {
    transform: translate(-50%, -50%) scale(36);
  }
}

@media (max-width: 1040px) {
  .gateway-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .web-free-grid,
  .web-scope-grid,
  .web-form-grid,
  .web-feature-set {
    grid-template-columns: 1fr;
  }

  .web-form-slotbar,
  .web-form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .gateway-page .topbar {
    position: fixed;
  }

  .gateway-hero {
    min-height: auto;
    padding: 112px 18px 122px;
  }

  .gateway-content {
    min-height: calc(100svh - 150px);
    align-items: center;
    padding-top: 28vh;
  }

  .gateway-card-row {
    grid-template-columns: 1fr;
  }

  .gateway-card-crawler {
    grid-column: auto;
  }

  .gateway-card {
    min-height: 188px;
  }

  .gateway-card strong {
    font-size: clamp(30px, 9vw, 42px);
  }

  .gateway-footer {
    position: relative;
    flex-direction: column;
    gap: 5px;
    padding: 12px 18px;
    font-size: 12px;
    text-align: center;
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .service-brief-grid,
  .package-card-grid,
  .package-scope {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-primer-head,
  .package-meta-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-cta {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .stat {
    min-height: 104px;
  }

  .feature-card,
  .plan {
    padding: 22px;
  }

  .chat-widget {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
