: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,
.hero-feature-list,
.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);
}

.toolkit-page .nav-menu-toggle,
.web-studio-page .nav-menu-toggle {
  display: grid;
  order: 3;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.toolkit-page .nav-menu-toggle span,
.web-studio-page .nav-menu-toggle span {
  grid-area: 1 / 1;
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.toolkit-page .nav-menu-toggle span:nth-child(1),
.web-studio-page .nav-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.toolkit-page .nav-menu-toggle span:nth-child(3),
.web-studio-page .nav-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.toolkit-page.nav-menu-open .nav-menu-toggle span:nth-child(1),
.web-studio-page.nav-menu-open .nav-menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.toolkit-page.nav-menu-open .nav-menu-toggle span:nth-child(2),
.web-studio-page.nav-menu-open .nav-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.toolkit-page.nav-menu-open .nav-menu-toggle span:nth-child(3),
.web-studio-page.nav-menu-open .nav-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.toolkit-page .topbar,
.web-studio-page .topbar {
  justify-content: flex-start;
}

.toolkit-page .brand,
.web-studio-page .brand {
  order: 1;
}

.toolkit-page .topbar-actions,
.web-studio-page .topbar-actions {
  order: 2;
  margin-left: auto;
}

.toolkit-page .nav-links,
.web-studio-page .nav-links {
  position: fixed;
  top: 78px;
  right: clamp(16px, 4vw, 56px);
  z-index: 30;
  display: grid;
  width: min(390px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 96px));
  gap: 8px;
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 8, 11, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toolkit-page.nav-menu-open .nav-links,
.web-studio-page.nav-menu-open .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toolkit-page .nav-links a,
.web-studio-page .nav-links a {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.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;
}

.toolkit-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 4vw, 76px);
  background:
    radial-gradient(circle at 78% 34%, rgba(112, 245, 178, 0.14), transparent 30rem),
    radial-gradient(circle at 24% 14%, rgba(69, 233, 255, 0.11), transparent 24rem),
    linear-gradient(135deg, rgba(7, 20, 22, 0.62), transparent 54%);
}

.toolkit-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 11, 0.9) 0%, rgba(5, 8, 11, 0.64) 42%, rgba(5, 8, 11, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 8, 11, 0.02), #05080b 96%);
}

.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;
}

.hero-product-preview {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(780px, 100%);
  margin: 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(112, 245, 178, 0.4);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(8, 22, 28, 0.96), rgba(3, 8, 12, 0.92)),
    rgba(5, 14, 18, 0.9);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.56),
    0 0 52px rgba(112, 245, 178, 0.16),
    inset 0 0 36px rgba(69, 233, 255, 0.08);
  transform: none;
}

.hero-product-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 16%, transparent 72%, rgba(112, 245, 178, 0.1)),
    linear-gradient(180deg, transparent 64%, rgba(0, 0, 0, 0.12));
}

.hero-product-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}

.hero-product-preview figcaption {
  position: static;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(112, 245, 178, 0.22);
  border-radius: 0;
  background: rgba(2, 8, 10, 0.78);
  backdrop-filter: blur(14px);
}

.app-window-chrome {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 10px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(112, 245, 178, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(3, 10, 13, 0.86);
}

.app-window-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  box-shadow: 0 0 12px currentColor;
}

.app-window-dot-red {
  color: #ff6b6b;
  background: currentColor;
}

.app-window-dot-yellow {
  color: #ffbd59;
  background: currentColor;
}

.app-window-dot-green {
  color: #70f5b2;
  background: currentColor;
}

.app-window-chrome strong {
  overflow: hidden;
  color: rgba(238, 255, 251, 0.88);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-window-chrome small {
  color: rgba(197, 213, 211, 0.58);
  font-size: 12px;
}

.app-window-screen {
  position: relative;
  z-index: 2;
  padding: 10px;
  background:
    radial-gradient(circle at 18% 0%, rgba(112, 245, 178, 0.08), transparent 18rem),
    #04090c;
}

.app-window-screen img {
  border: 1px solid rgba(112, 245, 178, 0.16);
  border-radius: 8px;
}

.hero-product-preview figcaption span {
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-product-preview figcaption strong {
  color: var(--text);
  font-size: clamp(18px, 1.6vw, 24px);
}

.hero-product-preview figcaption small {
  color: rgba(238, 255, 251, 0.72);
  line-height: 1.5;
}

.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.92;
}

.hero-copy span {
  display: block;
}

.hero-copy span + span {
  margin-top: 8px;
}

.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;
}

.hero-feature-list {
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #d8fffa;
  font-size: 14px;
  line-height: 1.5;
}

.hero-feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-feature-list span::before {
  content: "✓";
  color: var(--mint);
  font-weight: 900;
  text-shadow: 0 0 12px rgba(112, 245, 178, 0.64);
}

.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,
.signal-snapshot-card:hover::before,
.signal-market-card:hover::before,
.safety-item:hover::before,
.article-card:hover::before,
.bank-card:hover::before,
.purchase-form:hover::before {
  translate: 120% 0;
}

.feature-card-ai-model {
  border-color: rgba(255, 189, 89, 0.34);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(255, 189, 89, 0.08);
}

.feature-card-ai-model::before {
  background: linear-gradient(120deg, transparent, rgba(255, 189, 89, 0.2), transparent);
}

.feature-card-ai-model::after {
  background: radial-gradient(
    220px circle at var(--card-x) var(--card-y),
    rgba(255, 189, 89, 0.18),
    transparent 62%
  );
}

.feature-card-ai-model span,
.feature-card-ai-model h3 {
  color: var(--amber);
  text-shadow: 0 0 18px rgba(255, 189, 89, 0.32);
}

.feature-card-ai-model:hover {
  border-color: rgba(255, 189, 89, 0.62);
  box-shadow: 0 24px 70px rgba(255, 189, 89, 0.14);
}

.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;
}

.black-swan-section {
  padding-top: 82px;
}

.black-swan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.risk-ui-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(112, 245, 178, 0.32);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(6, 20, 24, 0.94), rgba(3, 8, 12, 0.9)),
    radial-gradient(circle at 16% 0%, rgba(112, 245, 178, 0.1), transparent 32%);
  box-shadow:
    0 28px 88px rgba(0, 0, 0, 0.36),
    0 0 42px rgba(112, 245, 178, 0.12);
}

.risk-ui-frame::after {
  content: "LIVE RISK CONTROLS";
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  padding: 8px 11px;
  border: 1px solid rgba(112, 245, 178, 0.34);
  border-radius: 999px;
  background: rgba(2, 8, 10, 0.78);
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 0 24px rgba(112, 245, 178, 0.14);
}

.risk-ui-bar {
  display: grid;
  grid-template-columns: repeat(3, 10px) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(112, 245, 178, 0.2);
  background: rgba(3, 10, 13, 0.86);
}

.risk-ui-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 12px currentColor;
}

.risk-ui-bar span:nth-child(1) {
  color: #ff6b6b;
  background: currentColor;
}

.risk-ui-bar span:nth-child(2) {
  color: #ffbd59;
  background: currentColor;
}

.risk-ui-bar span:nth-child(3) {
  color: #70f5b2;
  background: currentColor;
}

.risk-ui-bar strong {
  overflow: hidden;
  color: rgba(238, 255, 251, 0.88);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.risk-ui-frame img {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 16px;
}

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

.risk-defense-list article {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255, 189, 89, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 21, 16, 0.92), rgba(4, 10, 13, 0.94)),
    radial-gradient(circle at 18% 0%, rgba(255, 189, 89, 0.12), transparent 34%);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
}

.risk-defense-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 189, 89, 0.14) 42%, transparent 70%);
  translate: -120% 0;
  transition: translate 0.72s ease;
}

.risk-defense-list article:hover::before {
  translate: 120% 0;
}

.risk-defense-list span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 189, 89, 0.44);
  border-radius: 999px;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 900;
}

.risk-defense-list h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.risk-defense-list p {
  margin: 0;
  color: rgba(197, 213, 211, 0.88);
  line-height: 1.72;
}

.verification-section {
  padding-top: 78px;
}

.verification-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 189, 89, 0.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 189, 89, 0.14), transparent 32%),
    rgba(5, 12, 15, 0.76);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.verification-note strong {
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 900;
}

.verification-note p {
  margin: 0;
  color: rgba(197, 213, 211, 0.88);
  line-height: 1.76;
}

.connector-review-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 10px 13px;
  border: 4px solid #70f5b2;
  border-radius: 8px;
  color: #70f5b2;
  font-weight: 900;
  text-decoration: none;
  background: rgba(112, 245, 178, 0.08);
  box-shadow:
    0 0 18px rgba(112, 245, 178, 0.22),
    inset 0 0 16px rgba(112, 245, 178, 0.08);
  animation: connectorPulse 2.8s ease-in-out infinite;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.connector-review-link:hover {
  border-color: #8cffc5;
  background: rgba(112, 245, 178, 0.14);
  transform: translateY(-1px);
}

@keyframes connectorPulse {
  0%,
  100% {
    box-shadow:
      0 0 18px rgba(112, 245, 178, 0.2),
      inset 0 0 16px rgba(112, 245, 178, 0.08);
    transform: translateY(0);
  }

  50% {
    box-shadow:
      0 0 30px rgba(112, 245, 178, 0.5),
      0 0 62px rgba(112, 245, 178, 0.22),
      inset 0 0 22px rgba(112, 245, 178, 0.16);
    transform: translateY(-2px);
  }
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 89, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 189, 89, 0.18), rgba(112, 245, 178, 0.16), rgba(69, 233, 255, 0.14)),
    rgba(5, 12, 15, 0.92);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.verification-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 189, 89, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(10, 23, 27, 0.96), rgba(4, 10, 13, 0.94));
}

.verification-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 189, 89, 0.12) 42%, transparent 70%);
  translate: -120% 0;
  transition: translate 0.72s ease;
}

.verification-card:hover::before {
  translate: 120% 0;
}

.verification-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 189, 89, 0.42);
  border-radius: 999px;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 900;
  box-shadow: 0 0 20px rgba(255, 189, 89, 0.12);
}

.verification-card h3 {
  margin-bottom: 14px;
  color: var(--text);
}

.verification-card p,
.verification-card li {
  color: rgba(197, 213, 211, 0.88);
  line-height: 1.76;
}

.verification-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.verification-card-checklist {
  background:
    radial-gradient(circle at 22% 0%, rgba(112, 245, 178, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(8, 25, 20, 0.96), rgba(4, 10, 13, 0.94));
}

.section-heading .preorder-highlight {
  color: #ff9f1c;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255, 159, 28, 0.42);
}

.alpha-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.alpha-trust-strip span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(112, 245, 178, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 21, 20, 0.68), rgba(4, 10, 13, 0.76)),
    radial-gradient(circle at 10% 0%, rgba(112, 245, 178, 0.08), transparent 34%);
  color: rgba(238, 255, 251, 0.86);
  font-weight: 800;
  line-height: 1.55;
}

.alpha-trust-strip span::before {
  content: "✓";
  margin-right: 9px;
  color: var(--mint);
  font-weight: 950;
  text-shadow: 0 0 14px rgba(112, 245, 178, 0.56);
}

.signal-only-section {
  padding-top: 78px;
}

.signal-only-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.signal-snapshot-card,
.signal-market-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(112, 245, 178, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 21, 20, 0.94), rgba(3, 9, 12, 0.9)),
    radial-gradient(circle at 16% 0%, rgba(112, 245, 178, 0.14), transparent 34%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.signal-snapshot-card,
.signal-market-card {
  min-height: 340px;
}

.signal-snapshot-card::before,
.signal-market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(112, 245, 178, 0.14) 42%, transparent 70%);
  translate: -120% 0;
  transition: translate 0.8s ease;
}

.signal-only-layout[data-signal-tone="long"] .signal-snapshot-card {
  border-color: rgba(112, 245, 178, 0.64);
  box-shadow: 0 28px 90px rgba(112, 245, 178, 0.12);
}

.signal-only-layout[data-signal-tone="short"] .signal-snapshot-card {
  border-color: rgba(255, 107, 107, 0.66);
  box-shadow: 0 28px 90px rgba(255, 107, 107, 0.11);
}

.signal-card-head,
.signal-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.signal-card-head {
  margin-bottom: 28px;
  color: var(--mint);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card-head small {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.signal-symbol {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
}

.signal-action {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 950;
  line-height: 0.95;
}

.signal-only-layout[data-signal-tone="long"] .signal-action {
  color: var(--mint);
  text-shadow: 0 0 26px rgba(112, 245, 178, 0.32);
}

.signal-only-layout[data-signal-tone="short"] .signal-action {
  color: var(--danger);
  text-shadow: 0 0 26px rgba(255, 107, 107, 0.26);
}

.signal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(112, 245, 178, 0.38);
  border-radius: 999px;
  background: rgba(112, 245, 178, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.signal-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 22px;
}

.signal-metrics span,
.signal-row {
  border: 1px solid rgba(130, 247, 231, 0.16);
  border-radius: 8px;
  background: rgba(2, 9, 11, 0.68);
}

.signal-metrics span {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 18px;
}

.signal-metrics b {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
}

.signal-metrics small,
.signal-note,
.signal-disclaimer,
.signal-row small {
  color: var(--muted);
  line-height: 1.6;
}

.signal-note {
  margin: 0;
}

.signal-list {
  display: grid;
  gap: 10px;
}

.signal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  padding: 14px;
}

.signal-row strong {
  color: var(--text);
  font-family: var(--font-display);
}

.signal-row[data-tone="long"] strong {
  color: var(--mint);
}

.signal-row[data-tone="short"] strong {
  color: var(--danger);
}

.signal-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.signal-row small {
  grid-column: 1 / -1;
}

.signal-list-placeholder,
.signal-disclaimer {
  margin: 14px 0 0;
  color: var(--muted);
}

.signal-kline-frame {
  display: block;
  width: 100%;
  height: 460px;
  margin-top: 24px;
  border: 1px solid rgba(80, 255, 129, 0.3);
  border-radius: 8px;
  background: #05080b;
  box-shadow: 0 0 34px rgba(80, 255, 129, 0.08);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.68s ease 180ms,
    transform 0.78s cubic-bezier(0.18, 0.82, 0.2, 1) 180ms,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  will-change: opacity, transform;
}

.signal-snapshot-card.is-card-visible .signal-kline-frame {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.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 h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(32px, 4.8vw, 64px);
  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: #70f5b2;
  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: #70f5b2;
}

.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));
}

.toolkit-gallery-section {
  position: relative;
  overflow: visible;
  padding-top: 42px;
}

.toolkit-gallery-section .trading-gallery-copy {
  align-items: center;
}

.gallery-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 42px;
  border: 1px solid rgba(69, 233, 255, 0.42);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 900;
  background: rgba(5, 23, 28, 0.72);
  box-shadow: 0 0 24px rgba(69, 233, 255, 0.16);
}

.toolkit-gallery-section.is-gallery-motion-ready .trading-shot-card {
  --gallery-exit-transform: translate3d(0, 34px, 0) scale(0.97);
  opacity: 0;
  filter: blur(8px);
  transform: var(--gallery-exit-transform);
  transition:
    opacity 0.62s ease var(--gallery-delay, 0ms),
    filter 0.62s ease var(--gallery-delay, 0ms),
    transform 0.78s cubic-bezier(0.2, 0.82, 0.2, 1) var(--gallery-delay, 0ms);
  will-change: opacity, filter, transform;
}

.toolkit-gallery-section.is-gallery-motion-ready .trading-shot-card:nth-child(1) {
  --gallery-exit-transform: translate3d(-56px, 18px, 0) rotate(-3deg) scale(0.96);
}

.toolkit-gallery-section.is-gallery-motion-ready .trading-shot-card:nth-child(2) {
  --gallery-exit-transform: translate3d(0, -48px, 0) rotate(2deg) scale(0.95);
}

.toolkit-gallery-section.is-gallery-motion-ready .trading-shot-card:nth-child(3) {
  --gallery-exit-transform: translate3d(58px, 24px, 0) rotate(3deg) scale(0.96);
}

.toolkit-gallery-section.is-gallery-motion-ready .trading-shot-card:nth-child(4) {
  --gallery-exit-transform: translate3d(0, 54px, 0) rotate(-2deg) scale(0.95);
}

.toolkit-gallery-section.is-gallery-motion-ready.is-gallery-visible .trading-shot-card {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.toolkit-page .scroll-card-motion {
  --scroll-enter-x: 0;
  --scroll-enter-y: 34px;
  --scroll-enter-rotate: 0deg;
  --scroll-enter-scale: 0.96;
  --scroll-enter-clip: inset(12% 0 0 0);
  opacity: 0;
  filter: blur(9px);
  translate: var(--scroll-enter-x) var(--scroll-enter-y);
  rotate: var(--scroll-enter-rotate);
  scale: var(--scroll-enter-scale);
  clip-path: var(--scroll-enter-clip);
  transition:
    opacity 0.66s ease var(--scroll-motion-delay, 0ms),
    filter 0.66s ease var(--scroll-motion-delay, 0ms),
    translate 0.78s cubic-bezier(0.18, 0.82, 0.2, 1) var(--scroll-motion-delay, 0ms),
    rotate 0.78s cubic-bezier(0.18, 0.82, 0.2, 1) var(--scroll-motion-delay, 0ms),
    scale 0.78s cubic-bezier(0.18, 0.82, 0.2, 1) var(--scroll-motion-delay, 0ms),
    clip-path 0.78s ease var(--scroll-motion-delay, 0ms),
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  will-change: opacity, filter, translate, rotate, scale, clip-path;
}

.toolkit-page .scroll-card-motion.motion-variant-0 {
  --scroll-enter-x: -54px;
  --scroll-enter-y: 22px;
  --scroll-enter-rotate: -3deg;
}

.toolkit-page .scroll-card-motion.motion-variant-1 {
  --scroll-enter-x: 0;
  --scroll-enter-y: -48px;
  --scroll-enter-rotate: 2deg;
  --scroll-enter-scale: 0.94;
  --scroll-enter-clip: inset(0 0 18% 0);
}

.toolkit-page .scroll-card-motion.motion-variant-2 {
  --scroll-enter-x: 58px;
  --scroll-enter-y: 18px;
  --scroll-enter-rotate: 3deg;
}

.toolkit-page .scroll-card-motion.motion-variant-3 {
  --scroll-enter-x: 0;
  --scroll-enter-y: 54px;
  --scroll-enter-rotate: -2deg;
  --scroll-enter-scale: 0.93;
}

.toolkit-page .scroll-card-motion.motion-variant-4 {
  --scroll-enter-x: -34px;
  --scroll-enter-y: -28px;
  --scroll-enter-rotate: 4deg;
  --scroll-enter-clip: inset(0 14% 0 0);
}

.toolkit-page .scroll-card-motion.motion-variant-5 {
  --scroll-enter-x: 38px;
  --scroll-enter-y: -24px;
  --scroll-enter-rotate: -4deg;
  --scroll-enter-scale: 0.95;
  --scroll-enter-clip: inset(0 0 0 14%);
}

.toolkit-page .scroll-card-motion.motion-variant-6 {
  --scroll-enter-x: -16px;
  --scroll-enter-y: 46px;
  --scroll-enter-rotate: 1.5deg;
  --scroll-enter-scale: 0.91;
}

.toolkit-page .scroll-card-motion.motion-variant-7 {
  --scroll-enter-x: 20px;
  --scroll-enter-y: -52px;
  --scroll-enter-rotate: -1.5deg;
  --scroll-enter-clip: inset(18% 0 0 0);
}

.toolkit-page .scroll-card-motion.motion-variant-8 {
  --scroll-enter-x: -62px;
  --scroll-enter-y: 0;
  --scroll-enter-rotate: 2.6deg;
  --scroll-enter-scale: 0.94;
}

.toolkit-page .scroll-card-motion.motion-variant-9 {
  --scroll-enter-x: 62px;
  --scroll-enter-y: 0;
  --scroll-enter-rotate: -2.6deg;
  --scroll-enter-scale: 0.94;
}

.toolkit-page .scroll-card-motion.is-card-visible {
  opacity: 1;
  filter: blur(0);
  translate: 0 0;
  rotate: 0deg;
  scale: 1;
  clip-path: inset(0);
}

.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-motion-item {
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.72s ease var(--motion-delay, 0ms),
    filter 0.72s ease var(--motion-delay, 0ms),
    clip-path 0.82s ease var(--motion-delay, 0ms),
    transform 0.86s cubic-bezier(0.18, 0.82, 0.2, 1) var(--motion-delay, 0ms),
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  will-change: opacity, filter, transform;
}

.web-motion-section.is-motion-visible .web-motion-item {
  opacity: 1;
  filter: blur(0);
  transform: none;
  clip-path: inset(0);
}

.web-motion-section:target .web-motion-item {
  opacity: 1;
  filter: blur(0);
  transform: none;
  clip-path: inset(0);
}

.web-motion-free .web-motion-item {
  transform: translate3d(0, 34px, 0) scale(0.92);
  transition-timing-function: cubic-bezier(0.2, 1.24, 0.24, 1);
}

.web-motion-free .web-free-grid article:nth-child(3n+1) {
  transform: translate3d(-46px, 30px, 0) rotate(-2.5deg) scale(0.92);
}

.web-motion-free .web-free-grid article:nth-child(3n+2) {
  transform: translate3d(0, -38px, 0) rotate(2deg) scale(0.94);
  clip-path: inset(0 0 16% 0);
}

.web-motion-free .web-free-grid article:nth-child(3n) {
  transform: translate3d(46px, 26px, 0) rotate(2.8deg) scale(0.92);
}

.web-motion-scope .web-motion-item {
  transform: perspective(900px) rotateX(18deg) translate3d(0, 36px, 0);
  transform-origin: center top;
}

.web-motion-scope .web-scope-grid article:nth-child(4n+1) {
  transform: perspective(900px) rotateY(-14deg) translate3d(-40px, 26px, 0);
  transform-origin: left center;
}

.web-motion-scope .web-scope-grid article:nth-child(4n+2) {
  transform: perspective(900px) rotateX(16deg) translate3d(0, -34px, 0);
  transform-origin: center top;
}

.web-motion-scope .web-scope-grid article:nth-child(4n+3) {
  transform: perspective(900px) rotateX(-14deg) translate3d(0, 38px, 0);
  transform-origin: center bottom;
}

.web-motion-scope .web-scope-grid article:nth-child(4n) {
  transform: perspective(900px) rotateY(14deg) translate3d(40px, 26px, 0);
  transform-origin: right center;
}

.web-motion-portfolio .web-motion-item {
  transform: translate3d(0, 24px, 0) scale(0.98);
}

.web-motion-portfolio .web-browser-frame.web-motion-item {
  transform: translate3d(0, 32px, 0) rotate(0.6deg) scale(0.96);
}

.web-motion-process .web-motion-item {
  transform: translate3d(0, 28px, 0);
}

.web-motion-process .delivery-step.web-motion-item {
  transition-timing-function: cubic-bezier(0.18, 1.22, 0.28, 1);
}

.web-motion-process .delivery-step.web-motion-item:nth-child(1) {
  transform: translate3d(-88px, 0, 0) rotate(-4deg);
  transform-origin: left center;
}

.web-motion-process .delivery-step.web-motion-item:nth-child(2) {
  transform: translate3d(0, -88px, 0) rotate(4deg);
  transform-origin: center top;
}

.web-motion-process .delivery-step.web-motion-item:nth-child(3) {
  transform: translate3d(0, 88px, 0) rotate(-4deg);
  transform-origin: center bottom;
}

.web-motion-process .delivery-step.web-motion-item:nth-child(4) {
  transform: translate3d(88px, 0, 0) rotate(4deg);
  transform-origin: right center;
}

.web-motion-request .web-motion-item {
  transform: translate3d(0, 22px, 0) scaleY(0.94);
  transform-origin: top;
  clip-path: inset(16% 0 0 0);
}

.web-motion-request .web-form-grid label:nth-child(4n+1),
.web-motion-request .web-feature-set label:nth-child(4n+1) {
  transform: translate3d(-32px, 18px, 0) rotate(-1.8deg) scale(0.95);
  clip-path: inset(0 10% 0 0);
}

.web-motion-request .web-form-grid label:nth-child(4n+2),
.web-motion-request .web-feature-set label:nth-child(4n+2) {
  transform: translate3d(0, -28px, 0) rotate(1.6deg) scale(0.96);
  clip-path: inset(0 0 12% 0);
}

.web-motion-request .web-form-grid label:nth-child(4n+3),
.web-motion-request .web-feature-set label:nth-child(4n+3) {
  transform: translate3d(34px, 18px, 0) rotate(1.8deg) scale(0.95);
  clip-path: inset(0 0 0 10%);
}

.web-motion-request .web-form-grid label:nth-child(4n),
.web-motion-request .web-feature-set label:nth-child(4n) {
  transform: translate3d(0, 32px, 0) rotate(-1.4deg) scale(0.94);
}

.web-motion-section.is-motion-visible .web-motion-item {
  transform: none;
  clip-path: inset(0);
}

.web-motion-section.is-motion-visible.web-motion-free .web-motion-item,
.web-motion-section.is-motion-visible.web-motion-scope .web-motion-item,
.web-motion-section.is-motion-visible.web-motion-portfolio .web-motion-item,
.web-motion-section.is-motion-visible.web-motion-request .web-motion-item,
.web-motion-section:target.web-motion-free .web-motion-item,
.web-motion-section:target.web-motion-scope .web-motion-item,
.web-motion-section:target.web-motion-portfolio .web-motion-item,
.web-motion-section:target.web-motion-request .web-motion-item {
  transform: none;
  clip-path: inset(0);
}

.web-motion-section.is-motion-visible.web-motion-process .delivery-step.web-motion-item {
  transform: none;
}

.web-motion-section:target.web-motion-process .delivery-step.web-motion-item {
  transform: none;
}

.web-studio-page .web-free-grid article:hover,
.web-studio-page .web-scope-grid article:hover,
.web-studio-page .web-process-flow .delivery-step:hover,
.web-studio-page .web-request-form .web-form-grid label:hover,
.web-studio-page .web-feature-set label:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 98, 239, 0.54);
  box-shadow:
    0 24px 66px rgba(0, 0, 0, 0.3),
    0 0 34px rgba(255, 98, 239, 0.14);
}

.web-portfolio-section {
  position: relative;
  overflow: hidden;
}

.web-portfolio-section::before {
  content: "";
  position: absolute;
  inset: 12% -16% auto auto;
  width: min(560px, 42vw);
  height: min(560px, 42vw);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 98, 239, 0.2), rgba(69, 233, 255, 0.08) 46%, transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

.web-portfolio-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: 560px;
}

.web-portfolio-copy {
  display: grid;
  gap: 18px;
  max-width: 560px;
}

.web-portfolio-label {
  display: inline-flex;
  width: max-content;
  border: 1px solid rgba(255, 98, 239, 0.32);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 98, 239, 0.08);
  color: #ff9cf5;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
}

.web-portfolio-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.02;
}

.web-portfolio-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.web-portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.web-portfolio-tags span {
  border: 1px solid rgba(69, 233, 255, 0.22);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(69, 233, 255, 0.07);
  color: #dff8f5;
  font-size: 0.84rem;
  font-weight: 850;
}

.web-portfolio-link {
  width: max-content;
}

.web-portfolio-showcase {
  position: relative;
  display: block;
  justify-self: end;
  width: min(720px, 100%);
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translate(58px, 82px) rotate(-8deg);
  transform-origin: 88% 58%;
  transition:
    opacity 0.72s ease,
    transform 1s cubic-bezier(0.18, 0.82, 0.2, 1);
  will-change: transform, opacity;
}

.web-portfolio-section.is-playing .web-portfolio-showcase {
  opacity: 1;
  transform: translate(10px, -18px) rotate(-8deg);
}

.web-portfolio-float {
  animation: webPortfolioFloat 5.2s ease-in-out infinite;
  animation-play-state: paused;
}

.web-portfolio-section.is-playing .web-portfolio-float {
  animation-play-state: running;
}

.web-portfolio-video-reel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #03040b;
}

.portfolio-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.58s ease,
    transform 1.2s ease;
  pointer-events: none;
}

.portfolio-video.is-active {
  opacity: 1;
  transform: scale(1);
}

.web-portfolio-video-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(3, 4, 11, 0.06), transparent 42%, rgba(3, 4, 11, 0.48)),
    radial-gradient(circle at 18% 82%, rgba(255, 98, 239, 0.2), transparent 34%);
  pointer-events: none;
}

.portfolio-video-caption {
  position: absolute;
  left: clamp(16px, 4vw, 30px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 4;
  display: grid;
  gap: 7px;
  max-width: min(360px, 72%);
  padding: 12px 14px;
  border: 1px solid rgba(255, 98, 239, 0.28);
  border-radius: 8px;
  background: rgba(3, 4, 11, 0.58);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.portfolio-video-caption span {
  color: #ff9cf5;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 950;
}

.portfolio-video-caption strong {
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: clamp(16px, 2vw, 23px);
  line-height: 1.15;
}

.web-browser-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 98, 239, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(25, 8, 31, 0.96), rgba(4, 13, 17, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(255, 98, 239, 0.16), transparent 34%);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.42),
    0 0 60px rgba(255, 98, 239, 0.14),
    22px 26px 0 rgba(69, 233, 255, 0.06);
}

.web-browser-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.05);
}

.web-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.web-browser-bar span:nth-child(1) {
  background: #ff62ef;
}

.web-browser-bar span:nth-child(2) {
  background: #ffbd59;
}

.web-browser-bar span:nth-child(3) {
  background: #45e9ff;
}

.web-browser-bar strong {
  overflow: hidden;
  margin-left: 8px;
  color: #c8d7d5;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.web-browser-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 60% 42%, rgba(255, 98, 239, 0.22), transparent 32%),
    radial-gradient(circle at 34% 64%, rgba(69, 233, 255, 0.16), transparent 34%),
    #03040b;
}

.web-browser-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11), transparent 18% 78%, rgba(0, 0, 0, 0.22)),
    linear-gradient(180deg, transparent 68%, rgba(3, 4, 11, 0.58));
}

.web-portfolio-reel {
  display: grid;
  animation: webPortfolioReel 14s linear infinite;
  animation-play-state: paused;
}

.web-portfolio-section.is-playing .web-portfolio-reel {
  animation-play-state: running;
}

.portfolio-scene {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: min(405px, 47vw);
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(3, 4, 11, 0.2), rgba(3, 4, 11, 0.88)),
    radial-gradient(circle at 78% 18%, rgba(255, 98, 239, 0.28), transparent 35%),
    radial-gradient(circle at 22% 78%, rgba(69, 233, 255, 0.18), transparent 38%);
}

.portfolio-scene small {
  color: #ff9cf5;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 950;
}

.portfolio-scene strong {
  max-width: 78%;
  color: var(--text);
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.08;
}

.portfolio-scene span {
  display: block;
  width: min(420px, 80%);
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.portfolio-scene span:nth-of-type(2) {
  width: min(320px, 66%);
}

.portfolio-scene span:nth-of-type(3) {
  width: min(220px, 44%);
}

.portfolio-scene-toolkit {
  background:
    linear-gradient(145deg, rgba(3, 4, 11, 0.28), rgba(3, 4, 11, 0.88)),
    radial-gradient(circle at 76% 24%, rgba(112, 245, 178, 0.22), transparent 36%),
    radial-gradient(circle at 20% 80%, rgba(69, 233, 255, 0.18), transparent 38%);
}

.portfolio-scene-website {
  background:
    linear-gradient(145deg, rgba(3, 4, 11, 0.2), rgba(3, 4, 11, 0.9)),
    radial-gradient(circle at 75% 18%, rgba(255, 98, 239, 0.28), transparent 36%),
    radial-gradient(circle at 14% 82%, rgba(255, 189, 89, 0.13), transparent 34%);
}

.portfolio-scene-crawler {
  background:
    linear-gradient(145deg, rgba(3, 4, 11, 0.22), rgba(3, 4, 11, 0.9)),
    radial-gradient(circle at 72% 22%, rgba(69, 233, 255, 0.27), transparent 36%),
    radial-gradient(circle at 18% 80%, rgba(255, 189, 89, 0.15), transparent 34%);
}

.web-process-flow .delivery-step {
  overflow: hidden;
  border-color: rgba(255, 98, 239, 0.32);
  background:
    linear-gradient(145deg, rgba(31, 7, 34, 0.94), rgba(6, 12, 18, 0.9)),
    radial-gradient(circle at 18% 0%, rgba(255, 98, 239, 0.2), transparent 36%),
    radial-gradient(circle at 92% 100%, rgba(69, 233, 255, 0.09), transparent 34%);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.26),
    inset 0 0 36px rgba(255, 98, 239, 0.055);
}

.web-process-flow .delivery-step::before {
  content: "";
  position: absolute;
  inset: -44% -28% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 98, 239, 0.2), transparent 62%);
  opacity: 0.85;
  pointer-events: none;
}

.web-process-flow .delivery-step span {
  border-color: rgba(255, 98, 239, 0.72);
  background: rgba(255, 98, 239, 0.12);
  color: #ff9cf5;
  box-shadow: 0 0 24px rgba(255, 98, 239, 0.14);
}

.web-process-flow .delivery-step h3 {
  color: var(--text);
}

.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 .web-form-grid label,
.web-notes-label {
  padding: 14px;
  border: 1px solid rgba(255, 98, 239, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.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%);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.24),
    inset 0 0 34px rgba(69, 233, 255, 0.045);
}

.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-scope-grid strong {
  color: #dff8ff;
}

.crawler-service-page .web-process-flow .delivery-step {
  border-color: rgba(69, 233, 255, 0.36);
  background:
    linear-gradient(145deg, rgba(4, 24, 37, 0.94), rgba(4, 12, 18, 0.9)),
    radial-gradient(circle at 18% 0%, rgba(69, 233, 255, 0.22), transparent 36%),
    radial-gradient(circle at 92% 100%, rgba(112, 245, 178, 0.1), transparent 34%);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.26),
    inset 0 0 36px rgba(69, 233, 255, 0.06);
}

.crawler-service-page .web-process-flow .delivery-step::before {
  background: radial-gradient(circle, rgba(69, 233, 255, 0.22), transparent 62%);
}

.crawler-service-page .web-process-flow .delivery-step span {
  border-color: rgba(69, 233, 255, 0.74);
  background: rgba(69, 233, 255, 0.12);
  color: #45e9ff;
  box-shadow: 0 0 24px rgba(69, 233, 255, 0.16);
}

.crawler-trust-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(69, 233, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 24, 34, 0.78), rgba(4, 12, 18, 0.78)),
    radial-gradient(circle at 12% 0%, rgba(69, 233, 255, 0.12), transparent 34%);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.crawler-trust-note strong {
  color: #dff8ff;
  font-size: clamp(18px, 1.6vw, 22px);
}

.crawler-trust-note p {
  margin: 0;
  color: rgba(197, 213, 211, 0.9);
  line-height: 1.72;
}

.crawler-service-page .web-request-form .web-form-grid label,
.crawler-service-page .web-notes-label {
  border-color: rgba(69, 233, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(5, 23, 34, 0.58), rgba(255, 255, 255, 0.028)),
    radial-gradient(circle at 100% 0%, rgba(69, 233, 255, 0.08), transparent 34%);
}

.crawler-service-page .web-feature-set {
  border-color: rgba(69, 233, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(6, 24, 34, 0.54), rgba(255, 255, 255, 0.026)),
    radial-gradient(circle at 12% 0%, rgba(69, 233, 255, 0.08), transparent 34%);
}

.crawler-service-page .web-feature-set label {
  border-color: rgba(69, 233, 255, 0.14);
}

.crawler-service-page .web-free-grid article:hover,
.crawler-service-page .web-scope-grid article:hover,
.crawler-service-page .web-process-flow .delivery-step:hover,
.crawler-service-page .web-request-form .web-form-grid label:hover,
.crawler-service-page .web-feature-set label:hover {
  border-color: rgba(69, 233, 255, 0.58);
  box-shadow:
    0 24px 66px rgba(0, 0, 0, 0.3),
    0 0 34px rgba(69, 233, 255, 0.16);
}

.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;
}

.crawler-form-hint {
  color: rgba(197, 213, 211, 0.82);
  font-weight: 700;
  line-height: 1.6;
}

.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);
  }
}

@keyframes webPortfolioFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes webPortfolioReel {
  0%,
  18% {
    transform: translateY(0);
  }
  25%,
  43% {
    transform: translateY(-20%);
  }
  50%,
  68% {
    transform: translateY(-40%);
  }
  75%,
  93% {
    transform: translateY(-60%);
  }
  100% {
    transform: translateY(-80%);
  }
}

@media (max-width: 1120px) {
  .toolkit-hero {
    grid-template-columns: 1fr;
  }

  .black-swan-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-product-preview {
    justify-self: start;
    width: min(760px, 100%);
    margin-top: 10px;
    transform: none;
  }
}

@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;
  }

  .hero-product-preview {
    border-radius: 8px;
  }

  .hero-product-preview figcaption {
    position: static;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: rgba(2, 8, 10, 0.86);
  }

  .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-copy h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .toolkit-gallery-section .trading-gallery-copy {
    gap: 16px;
  }

  .gallery-status {
    justify-self: flex-start;
  }

  .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,
  .black-swan-layout,
  .verification-grid,
  .article-grid,
  .footer-grid,
  .bank-grid,
  .signal-only-layout,
  .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;
  }

  .signal-snapshot-card,
  .signal-market-card {
    min-height: auto;
    padding: 24px;
  }

  .signal-main-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .signal-metrics {
    grid-template-columns: 1fr;
  }

  .signal-kline-frame {
    height: 420px;
  }

  .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: 74px;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(4, 6, 12, 0.9), rgba(4, 6, 12, 0.66));
  border-bottom-color: rgba(112, 245, 178, 0.18);
  box-shadow: 0 0 32px rgba(69, 233, 255, 0.06);
}

.gateway-page .brand {
  gap: 13px;
}

.gateway-page .brand-mark {
  width: 46px;
  height: 46px;
  border-color: rgba(112, 245, 178, 0.4);
  background:
    linear-gradient(145deg, rgba(112, 245, 178, 0.22), rgba(69, 233, 255, 0.1)),
    rgba(9, 34, 36, 0.8);
  box-shadow: 0 0 28px rgba(112, 245, 178, 0.18);
  font-size: 17px;
}

.gateway-page .brand strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.gateway-page .brand small {
  margin-top: 6px;
  color: rgba(238, 255, 251, 0.72);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.gateway-menu-toggle {
  order: 3;
  display: grid;
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(112, 245, 178, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
}

.gateway-menu-toggle span {
  grid-area: 1 / 1;
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.gateway-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.gateway-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.gateway-page.gateway-menu-open .gateway-menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.gateway-page.gateway-menu-open .gateway-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.gateway-page.gateway-menu-open .gateway-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.gateway-nav-links {
  position: fixed;
  top: 78px;
  right: clamp(16px, 4vw, 56px);
  z-index: 30;
  display: grid;
  width: min(340px, calc(100vw - 32px));
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(112, 245, 178, 0.18);
  background: rgba(5, 8, 11, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.gateway-page.gateway-menu-open .gateway-nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gateway-nav-links a {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(238, 255, 251, 0.82);
  font-weight: 700;
}

.gateway-nav-links a:hover {
  color: var(--mint);
  text-shadow: 0 0 14px rgba(112, 245, 178, 0.62);
}

.gateway-hero {
  min-height: 100svh;
  padding: 102px 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: 0.72;
}

.gateway-vignette {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(105, 116, 124, 0.22), rgba(105, 116, 124, 0.22)),
    linear-gradient(180deg, rgba(3, 4, 11, 0.24) 0%, rgba(3, 4, 11, 0.08) 32%, rgba(3, 4, 11, 0.72) 100%),
    radial-gradient(circle at 55.5% 43%, rgba(3, 4, 11, 0.12) 0 15%, rgba(3, 4, 11, 0.28) 43%, rgba(3, 4, 11, 0.92) 100%);
}

.gateway-content {
  position: relative;
  z-index: 3;
  display: grid;
  gap: clamp(22px, 4vh, 42px);
  min-height: calc(100svh - 132px);
  align-items: center;
  justify-items: center;
  padding-top: clamp(8px, 2.5vh, 32px);
  padding-bottom: clamp(54px, 8vh, 88px);
}

.gateway-intro {
  width: min(1540px, 100%);
}

.gateway-intro .gateway-kicker {
  justify-content: flex-start;
}

.gateway-intro h1 {
  margin: 12px 0 10px;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.gateway-intro p:not(.gateway-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(238, 255, 251, 0.8);
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.62;
}

.gateway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.gateway-action-primary,
.gateway-action-secondary,
.gateway-card-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gateway-action-primary {
  border: 1px solid rgba(255, 98, 239, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 98, 239, 0.86), rgba(255, 189, 89, 0.34)),
    rgba(255, 98, 239, 0.42);
  color: #fff;
  box-shadow: 0 0 28px rgba(255, 98, 239, 0.28);
}

.gateway-action-secondary {
  border: 1px solid rgba(112, 245, 178, 0.72);
  background: rgba(112, 245, 178, 0.06);
  color: #effffb;
}

.gateway-action-primary:hover,
.gateway-action-primary:focus-visible,
.gateway-action-secondary:hover,
.gateway-action-secondary:focus-visible,
.gateway-card-action:hover,
.gateway-card-action:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.gateway-card-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.32fr) repeat(3, minmax(220px, 1fr));
  gap: clamp(18px, 2.3vw, 30px);
  width: min(1540px, 100%);
}

.gateway-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-height: clamp(340px, 42vh, 470px);
  align-content: stretch;
  justify-items: center;
  gap: clamp(12px, 1.6vh, 20px);
  padding: clamp(26px, 3.4vw, 48px);
  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 38px rgba(112, 245, 178, 0.3),
    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-toolkit {
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  border-color: rgba(140, 255, 196, 1);
  background:
    linear-gradient(135deg, rgba(22, 98, 58, 0.78), rgba(6, 21, 24, 0.66)),
    rgba(4, 10, 14, 0.76);
  box-shadow:
    0 0 54px rgba(112, 245, 178, 0.42),
    inset 0 0 54px rgba(112, 245, 178, 0.18);
}

.gateway-card-admin {
  border-color: rgba(255, 189, 89, 0.92);
  background:
    linear-gradient(135deg, rgba(91, 59, 13, 0.72), rgba(24, 14, 4, 0.66)),
    rgba(18, 11, 4, 0.72);
  box-shadow:
    0 0 38px rgba(255, 189, 89, 0.28),
    inset 0 0 42px rgba(255, 189, 89, 0.11);
}

.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 38px rgba(247, 43, 226, 0.3),
    inset 0 0 42px rgba(247, 43, 226, 0.12);
}

.gateway-card-website.gateway-card-primary {
  border-color: rgba(255, 105, 239, 1);
  background:
    linear-gradient(135deg, rgba(118, 22, 128, 0.82), rgba(28, 6, 42, 0.68)),
    rgba(18, 5, 24, 0.78);
  box-shadow:
    0 0 58px rgba(247, 43, 226, 0.42),
    inset 0 0 56px rgba(247, 43, 226, 0.18);
}

.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-admin:hover,
.gateway-card-admin:focus-visible {
  box-shadow:
    0 0 46px rgba(255, 189, 89, 0.42),
    inset 0 0 54px rgba(255, 189, 89, 0.15);
}

.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 38px rgba(69, 233, 255, 0.3),
    inset 0 0 42px rgba(69, 233, 255, 0.12);
}

.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(69, 233, 255, 0.16);
}

.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(13px, 1.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.gateway-card-website .gateway-kicker {
  color: #ff79ed;
}

.gateway-card-crawler .gateway-kicker {
  color: #45e9ff;
}

.gateway-card-admin .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-kicker em.is-empty {
  border-color: rgba(255, 189, 89, 0.58);
  color: #ffe2aa;
  background: rgba(255, 189, 89, 0.1);
  box-shadow: 0 0 18px rgba(255, 189, 89, 0.12);
}

.gateway-card strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.7vw, 58px);
  line-height: 1.22;
  letter-spacing: 0;
}

.gateway-card-toolkit:hover,
.gateway-card-toolkit:focus-visible {
  box-shadow:
    0 0 62px rgba(112, 245, 178, 0.58),
    inset 0 0 64px rgba(112, 245, 178, 0.22);
}

.gateway-card-tech {
  border-color: rgba(112, 245, 178, 0.7);
  background:
    linear-gradient(135deg, rgba(17, 64, 39, 0.56), rgba(5, 18, 21, 0.64)),
    rgba(4, 10, 14, 0.72);
  box-shadow:
    0 0 28px rgba(112, 245, 178, 0.2),
    inset 0 0 34px rgba(112, 245, 178, 0.1);
}

.gateway-card-tech:hover,
.gateway-card-tech:focus-visible {
  box-shadow:
    0 0 42px rgba(112, 245, 178, 0.34),
    inset 0 0 48px rgba(112, 245, 178, 0.14);
}

.gateway-slot-badge {
  position: absolute;
  top: 15px;
  right: 13px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 98, 239, 0.46);
  border-radius: 8px 8px 8px 3px;
  background:
    linear-gradient(135deg, rgba(255, 98, 239, 0.2), rgba(255, 98, 239, 0.08)),
    rgba(12, 5, 18, 0.72);
  color: #ffd9fa;
  font-family: var(--font-display);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow:
    0 0 18px rgba(255, 98, 239, 0.12),
    0 8px 22px rgba(0, 0, 0, 0.16);
  transform: rotate(9deg);
  transform-origin: 72% 50%;
}

.gateway-slot-badge::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(255, 231, 252, 0.5);
  border-right: 1px solid rgba(255, 231, 252, 0.38);
  border-radius: 0 7px 0 4px;
  background: rgba(255, 231, 252, 0.18);
}

.gateway-slot-badge.is-empty {
  border-color: rgba(255, 189, 89, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 189, 89, 0.22), rgba(255, 189, 89, 0.08)),
    rgba(18, 11, 4, 0.72);
  color: #ffe2aa;
  box-shadow: 0 0 20px rgba(255, 189, 89, 0.16);
}

.gateway-slot-badge.is-empty::after {
  border-top-color: rgba(255, 238, 199, 0.5);
  border-right-color: rgba(255, 238, 199, 0.38);
  background: rgba(255, 238, 199, 0.18);
}

.gateway-card-primary strong {
  font-size: clamp(38px, 4vw, 66px);
}

.gateway-card small {
  position: relative;
  z-index: 1;
  color: rgba(238, 255, 251, 0.78);
  max-width: 680px;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.62;
}

.gateway-card-primary small {
  font-size: clamp(17px, 1.6vw, 23px);
}

.gateway-card-points {
  position: relative;
  z-index: 1;
  display: flex;
  align-self: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin: 0;
  padding: 0;
  color: rgba(238, 255, 251, 0.9);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.34;
  list-style: none;
}

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

.gateway-card-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  opacity: 0.8;
}

.gateway-card-points .gateway-card-ai-model {
  color: #ffbd59;
  text-shadow: 0 0 16px rgba(255, 189, 89, 0.3);
}

.gateway-card-points-compact {
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: clamp(16px, 1.35vw, 19px);
}

.gateway-card-note {
  position: relative;
  z-index: 1;
  align-self: start;
  margin: -2px 0 0;
  color: rgba(238, 255, 251, 0.68);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
}

.gateway-card-action {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(238, 255, 251, 0.9);
  background: rgba(255, 255, 255, 0.055);
}

.gateway-card-primary .gateway-card-action {
  border-color: rgba(255, 126, 243, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 98, 239, 0.96), rgba(255, 189, 89, 0.34)),
    rgba(255, 98, 239, 0.34);
  color: #fff;
  box-shadow: 0 0 30px rgba(247, 43, 226, 0.34);
}

.gateway-card-primary .gateway-card-action:hover,
.gateway-card-primary .gateway-card-action:focus-visible {
  border-color: rgba(255, 207, 250, 0.96);
  background:
    linear-gradient(135deg, rgba(255, 133, 245, 0.98), rgba(255, 189, 89, 0.48)),
    rgba(255, 98, 239, 0.44);
  box-shadow: 0 0 36px rgba(247, 43, 226, 0.44);
}

.gateway-card-action:hover,
.gateway-card-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.gateway-trust {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 54px);
  width: min(1120px, calc(100vw - 40px));
  margin: clamp(34px, 5vh, 58px) auto 0;
  padding: 26px;
  border: 1px solid rgba(112, 245, 178, 0.32);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(7, 24, 20, 0.74), rgba(4, 10, 14, 0.58)),
    radial-gradient(circle at 12% 0%, rgba(112, 245, 178, 0.13), transparent 34%);
  box-shadow:
    0 0 34px rgba(112, 245, 178, 0.1),
    inset 0 0 38px rgba(112, 245, 178, 0.06);
}

.gateway-trust h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
}

.gateway-trust p {
  margin: 0 0 18px;
  color: rgba(238, 255, 251, 0.84);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.78;
}

.gateway-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gateway-trust-badges li {
  border: 1px solid rgba(112, 245, 178, 0.32);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(112, 245, 178, 0.08);
  color: #dffdf0;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(112, 245, 178, 0.08);
}

.gateway-about {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 54px);
  width: min(1120px, calc(100vw - 40px));
  margin: clamp(30px, 5vh, 58px) auto 96px;
  padding: 30px 0 0;
  border-top: 1px solid rgba(112, 245, 178, 0.32);
}

.gateway-about h2 {
  margin: 6px 0 0;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.06;
}

.gateway-about p {
  margin-bottom: 18px;
  color: rgba(238, 255, 251, 0.82);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.8;
}

.gateway-about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gateway-about-list li {
  border: 1px solid rgba(112, 245, 178, 0.34);
  border-radius: 999px;
  padding: 9px 14px;
  color: #dffdf0;
  background: rgba(112, 245, 178, 0.08);
  box-shadow: 0 0 22px rgba(112, 245, 178, 0.08);
}

.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(112, 245, 178, 0.2);
  background:
    linear-gradient(90deg, rgba(112, 245, 178, 0.06), transparent 26%, rgba(69, 233, 255, 0.05)),
    rgba(3, 4, 11, 0.78);
  color: rgba(238, 255, 251, 0.68);
  font-size: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 -18px 46px rgba(0, 0, 0, 0.22);
}

.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-intro,
.gateway-page.is-warping .gateway-trust,
.gateway-page.is-warping .gateway-about {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-40px) scale(0.96);
  transition: opacity 0.34s ease, filter 0.34s ease, transform 0.46s 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);
}

.gateway-warp-amber::before {
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 189, 89, 0) 0deg 9deg,
      rgba(255, 189, 89, 0.56) 11deg 13deg,
      rgba(247, 43, 226, 0) 14deg 25deg,
      rgba(247, 43, 226, 0.3) 27deg 29deg
    );
}

.gateway-warp-amber::after {
  background:
    radial-gradient(circle, #000 0 34%, rgba(255, 255, 255, 0.9) 36%, rgba(255, 189, 89, 0.56) 41%, rgba(247, 43, 226, 0.24) 49%, transparent 64%);
  box-shadow:
    0 0 70px rgba(255, 255, 255, 0.52),
    0 0 130px rgba(255, 189, 89, 0.3),
    0 0 150px rgba(247, 43, 226, 0.2);
}

@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));
    grid-template-areas:
      "website admin"
      "crawler toolkit";
  }

  .gateway-card-website {
    grid-area: website;
  }

  .gateway-card-admin {
    grid-area: admin;
  }

  .gateway-card-crawler {
    grid-area: crawler;
  }

  .gateway-card-toolkit {
    grid-area: toolkit;
  }
}

@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: 104px 18px 96px;
  }

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

  .gateway-intro {
    width: calc(100vw - 36px);
  }

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

  .gateway-intro p:not(.gateway-kicker) {
    font-size: 17px;
  }

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

  .verification-note {
    grid-template-columns: 1fr;
  }

  .gateway-card-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "website"
      "admin"
      "crawler"
      "toolkit";
    width: calc(100vw - 36px);
  }

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

  .gateway-card {
    min-height: 188px;
    border-width: 2px;
    border-radius: 14px;
  }

  .gateway-card-toolkit,
  .gateway-card-website {
    min-height: 240px;
  }

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

  .gateway-card small,
  .gateway-card-primary small {
    font-size: 16px;
  }

  .gateway-card-points,
  .gateway-card-points-compact {
    font-size: 16px;
  }

  .gateway-card-note {
    font-size: 13px;
  }

  .gateway-trust,
  .gateway-about {
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100vw - 36px);
    margin: 30px auto 36px;
  }

  .gateway-trust {
    padding: 22px;
  }

  .gateway-about {
    padding-top: 24px;
  }

  .gateway-trust-badges li,
  .gateway-about-list li {
    width: 100%;
    text-align: center;
  }

  .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;
  }
}
