:root {
  --bg: #fff8ff;
  --bg-2: #f5fcff;
  --ink: #2f457c;
  --muted: #6f86ad;
  --line: rgba(255, 102, 182, 0.18);
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.86);
  --pink: #ff5eb3;
  --pink-2: #ff8bcc;
  --blue: #59d8ff;
  --blue-2: #a8f2ff;
  --gold: #ffcf5d;
  --shadow: 0 28px 70px rgba(92, 116, 177, 0.18);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --body-bg:
    radial-gradient(circle at top left, rgba(255, 148, 204, 0.35), transparent 28%),
    radial-gradient(circle at top right, rgba(89, 216, 255, 0.3), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255, 212, 98, 0.18), transparent 26%),
    linear-gradient(180deg, #fff9ff 0%, #f3fbff 48%, #fff6fd 100%);
  --glass-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
  --glass-card: rgba(255, 255, 255, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --glass-soft: rgba(255, 255, 255, 0.72);
  --border-soft: rgba(255, 94, 179, 0.16);
  --border-strong: rgba(255, 94, 179, 0.28);
  --hero-visual-bg:
    radial-gradient(circle at 50% 35%, rgba(255, 148, 204, 0.25), transparent 30%),
    radial-gradient(circle at 50% 60%, rgba(89, 216, 255, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 252, 255, 0.74));
  --hero-ring: rgba(89, 216, 255, 0.16);
  --orb-shell-bg: radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  --title-solid: #31488b;
  --field-bg: rgba(255, 255, 255, 0.84);
  --field-contrast: rgba(248, 250, 255, 0.92);
  --accent-panel: linear-gradient(180deg, rgba(255, 240, 249, 0.9), rgba(237, 252, 255, 0.86));
  --success-bg: rgba(224, 255, 245, 0.9);
  --error-bg: rgba(255, 240, 243, 0.94);
  --bubble-core: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.18) 44%, rgba(89, 216, 255, 0.12) 72%, transparent 78%);
}

body[data-theme="dark"] {
  --bg: #050d1b;
  --bg-2: #0d1730;
  --ink: #edf4ff;
  --muted: #96add5;
  --card: rgba(8, 15, 29, 0.76);
  --card-strong: rgba(10, 18, 36, 0.9);
  --line: rgba(114, 191, 255, 0.14);
  --shadow: 0 28px 80px rgba(1, 6, 16, 0.58);
  --body-bg:
    radial-gradient(circle at 8% 12%, rgba(255, 94, 179, 0.1), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(89, 216, 255, 0.12), transparent 22%),
    radial-gradient(circle at 50% 82%, rgba(110, 165, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #040c19 0%, #081225 34%, #0b1730 68%, #0e1c39 100%);
  --glass-bg: linear-gradient(180deg, rgba(10, 17, 33, 0.9), rgba(7, 13, 26, 0.84));
  --glass-card: rgba(9, 16, 32, 0.82);
  --glass-strong: rgba(12, 20, 38, 0.9);
  --glass-soft: rgba(8, 14, 28, 0.76);
  --border-soft: rgba(116, 181, 255, 0.12);
  --border-strong: rgba(126, 196, 255, 0.24);
  --hero-visual-bg:
    radial-gradient(circle at 50% 24%, rgba(255, 94, 179, 0.14), transparent 26%),
    radial-gradient(circle at 50% 56%, rgba(89, 216, 255, 0.16), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(121, 164, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(7, 13, 26, 0.96), rgba(10, 18, 34, 0.92));
  --hero-ring: rgba(120, 190, 255, 0.12);
  --orb-shell-bg: radial-gradient(circle at top, rgba(20, 34, 64, 0.94), rgba(7, 14, 28, 0.9));
  --title-solid: #eff5ff;
  --field-bg: rgba(5, 11, 23, 0.92);
  --field-contrast: rgba(7, 13, 25, 0.96);
  --accent-panel: linear-gradient(180deg, rgba(15, 23, 45, 0.98), rgba(8, 15, 29, 0.94));
  --success-bg: rgba(8, 52, 47, 0.92);
  --error-bg: rgba(60, 16, 37, 0.94);
  --bubble-core: radial-gradient(circle at 30% 30%, rgba(185, 240, 255, 0.2), rgba(120, 190, 255, 0.08) 44%, rgba(89, 216, 255, 0.04) 72%, transparent 78%);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--body-bg);
  overflow-x: hidden;
}

button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.site-v2 {
  width: min(1420px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 120px;
  position: relative;
  z-index: 2;
}

.pointer-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 32;
}

.trail-node,
.trail-spark,
.trail-orb,
.cursor-core,
.cursor-bloom {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity, width, height;
}

.trail-node {
  width: 14px;
  height: 14px;
  border-radius: 1px;
  background: linear-gradient(135deg, rgba(194, 255, 255, 0.92), rgba(111, 240, 255, 0.3));
  border: 1px solid rgba(196, 255, 255, 0.9);
  box-shadow: 0 0 18px rgba(111, 240, 255, 0.34), 0 0 44px rgba(111, 240, 255, 0.14);
  filter: blur(0.2px);
}

.trail-node::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
}

.trail-node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 1px;
  background: rgba(126, 242, 255, 0.16);
  filter: blur(9px);
}

.trail-spark {
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(147, 250, 255, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 var(--spark-glow, 18px) rgba(111, 240, 255, var(--spark-alpha, 0.24));
  opacity: 0.9;
}

.trail-orb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.72), rgba(180, 248, 255, 0.12) 52%, transparent 72%);
  border: 1px solid rgba(168, 239, 255, 0.24);
  box-shadow: 0 0 22px rgba(111, 240, 255, 0.1);
}

.cursor-core {
  width: 12px;
  height: 12px;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(159, 247, 255, 0.8));
  box-shadow: 0 0 20px rgba(111, 240, 255, 0.42), 0 0 48px rgba(111, 240, 255, 0.22);
}

.cursor-core::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent);
}

.cursor-bloom {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(108, 236, 255, 0.28), rgba(108, 236, 255, 0.04));
  box-shadow: 0 0 48px rgba(111, 240, 255, 0.2), 0 0 80px rgba(111, 240, 255, 0.16);
  filter: blur(14px);
}

.ambient-cloud {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.ambient-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--bubble-core);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 60px rgba(89, 216, 255, 0.12), inset 0 0 30px rgba(255, 255, 255, 0.14);
  opacity: 0.88;
  animation: floatBubble 16s ease-in-out infinite;
}

.ambient-bubble::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  border: 1px solid rgba(89, 216, 255, 0.22);
}

.bubble-1 { width: 132px; height: 132px; left: -36px; top: 90px; animation-duration: 18s; }
.bubble-2 { width: 84px; height: 84px; left: 48px; top: 340px; animation-duration: 15s; }
.bubble-3 { width: 152px; height: 152px; right: -44px; top: 120px; animation-duration: 20s; }
.bubble-4 { width: 112px; height: 112px; right: 20px; top: 470px; animation-duration: 17s; }
.bubble-5 { width: 90px; height: 90px; left: 220px; bottom: 88px; animation-duration: 14s; }
.bubble-6 { width: 116px; height: 116px; right: 220px; bottom: 92px; animation-duration: 18s; }
.bubble-7 { width: 70px; height: 70px; right: 170px; top: 34px; animation-duration: 13s; }
.bubble-8 { width: 64px; height: 64px; right: 76px; bottom: 220px; animation-duration: 16s; }

.topbar,
.hero-copy,
.hero-visual,
.method-card-shell,
.workspace-shell,
.feed-card,
.review-stage,
.mobile-dock {
  backdrop-filter: blur(24px);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  min-height: 74px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--glass-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.brand > span {
  display: grid;
  gap: 4px;
  text-align: left;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(255, 94, 179, 0.18);
}

.brand strong,
.hero h1,
.wheel-core h3,
.section-top h2,
.workspace-panel h3,
.orbit-core-badge strong {
  font-family: "Baloo 2", cursive;
}

.brand strong {
  font-size: 1.28rem;
  line-height: 1;
}

.brand small {
  display: block;
  max-width: 220px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.28;
}

.top-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.top-actions,
.hero-buttons,
.action-row,
.list-actions,
.account-benefits,
.hero-stats,
.pay-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.top-actions {
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.top-actions::-webkit-scrollbar { display: none; }

.nav-btn,
.workspace-tab,
.primary-action,
.ghost-action,
.wheel-arrow,
.mobile-dock button,
.auth-switch button,
.profile-chip,
.theme-toggle {
  position: relative;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  overflow: hidden;
}

.nav-btn::before,
.workspace-tab::before,
.primary-action::before,
.ghost-action::before,
.theme-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.55), transparent 80%);
  transform: translateX(-120%);
  transition: transform 280ms ease;
}

.nav-btn:hover::before,
.workspace-tab:hover::before,
.primary-action:hover::before,
.ghost-action:hover::before,
.theme-toggle:hover::before { transform: translateX(120%); }

.nav-btn,
.ghost-action,
.workspace-tab,
.auth-switch button,
.mobile-dock button,
.profile-chip,
.theme-toggle {
  padding: 11px 16px;
  background: var(--glass-soft);
  color: var(--ink);
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 22px rgba(132, 153, 211, 0.08);
}

.nav-btn,
.profile-chip {
  min-height: 52px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-btn {
  flex: 0 0 auto;
  padding: 10px 14px;
  font-size: 0.98rem;
}

.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  min-width: 176px;
  white-space: nowrap;
}

.profile-chip > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  min-width: 228px;
  justify-content: space-between;
}

.theme-toggle-copy span,
.theme-toggle-copy small,
.theme-toggle-copy strong { display: block; }

.theme-toggle-copy {
  line-height: 1.1;
  text-align: left;
}

.theme-toggle-copy strong {
  font-size: 0.96rem;
  line-height: 1.06;
  white-space: nowrap;
}

.theme-toggle-mark {
  position: relative;
  width: 56px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 126, 198, 0.86), rgba(122, 226, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 12px 24px rgba(255, 94, 179, 0.18);
  overflow: hidden;
  animation: toggleGlow 3.8s ease-in-out infinite;
}

.theme-toggle-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.34), transparent 72%);
  transform: translateX(-135%);
  animation: toggleSweep 4.2s ease-in-out infinite;
}

.theme-toggle-mark::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 250, 255, 0.82));
  transform: translateX(0);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 10px 16px rgba(17, 48, 88, 0.14);
  animation: toggleKnob 2.6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.theme-toggle[data-theme-state="dark"] .theme-toggle-mark {
  background: linear-gradient(135deg, rgba(14, 26, 58, 0.98), rgba(33, 74, 126, 0.94));
  border-color: rgba(147, 211, 255, 0.34);
}

.theme-toggle[data-theme-state="dark"] .theme-toggle-mark::before {
  transform: translateX(26px);
  background: linear-gradient(135deg, rgba(163, 246, 255, 0.98), rgba(118, 190, 255, 0.84));
  box-shadow: 0 10px 20px rgba(72, 182, 255, 0.24);
}

.profile-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #70ddff, #ff69ba);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(255, 94, 179, 0.24);
}

.nav-btn.active,
.workspace-tab.active,
.auth-switch button.active,
.mobile-dock button.active {
  background: linear-gradient(135deg, rgba(255, 110, 187, 0.16), rgba(89, 216, 255, 0.16));
  border-color: var(--border-strong);
}

.nav-btn b,
.workspace-tab b {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), #ff7fc5);
  color: white;
  font-size: 0.75rem;
}

.primary-action {
  padding: 14px 22px;
  background: linear-gradient(135deg, #ff69ba, #ff8bd0 44%, #70ddff);
  color: white;
  box-shadow: 0 18px 34px rgba(255, 94, 179, 0.22);
}

.ghost-action {
  padding: 13px 20px;
}

.nav-btn:hover,
.workspace-tab:hover,
.primary-action:hover,
.ghost-action:hover,
.wheel-arrow:hover,
.mobile-dock button:hover,
.theme-toggle:hover { transform: translateY(-2px); }

.hero,
.hub {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 22px;
  align-items: stretch;
}

.hero { margin-top: 8px; }

.hero-copy,
.hero-visual,
.method-card-shell,
.workspace-shell,
.feed-card,
.review-stage {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy,
.method-card-shell,
.workspace-shell,
.review-stage { padding: 28px; }

.hero-copy::before,
.hero-visual::before,
.method-card-shell::before,
.workspace-shell::before,
.review-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 42%);
  pointer-events: none;
}

.hero-badge,
.mini-kicker,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--glass-card);
  border: 1px solid var(--border-soft);
  color: #ff56ad;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 94, 179, 0.08);
}

.hero h1,
.section-top h2 {
  margin: 18px 0 12px;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.9;
  color: var(--title-solid);
}

.hero h1 span,
.section-top h2 {
  background: linear-gradient(135deg, var(--pink), #ff88cf 38%, #4bd1ff 86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p,
.section-top p,
.workspace-panel p,
.feed-card p,
.orbit-card p,
.info-box p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-stats { margin-top: 20px; }
.hero-stats > div,
.info-box,
.feed-card,
.list-card,
.order-box,
.empty-box,
.tracker-box,
.timeline-item {
  border-radius: var(--radius-md);
  background: var(--glass-soft);
  border: 1px solid var(--border-soft);
}

.hero-stats > div {
  padding: 16px 18px;
  min-width: 150px;
}

.hero-stats span,
.info-box span,
.pay-stats span,
.order-meta span { display: block; color: var(--muted); margin-bottom: 4px; }

.hero-stats strong,
.info-box strong,
.pay-stats strong,
.float-card strong { font-size: 1.1rem; }

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--hero-visual-bg);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 44%),
    radial-gradient(circle at 50% 34%, rgba(89, 216, 255, 0.06), transparent 30%);
  pointer-events: none;
}

.hero-orb-stage {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.hero-orb-stage::before {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 48%, rgba(89, 216, 255, 0.04) 72%, transparent 82%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.72;
}

.orb-ring {
  position: absolute;
  inset: 16% 4%;
  border-radius: 50%;
  border: 1.5px solid rgba(89, 216, 255, 0.16);
  transform: rotate(-14deg) scaleX(1.1) scaleY(0.28);
  pointer-events: none;
}

.orb-ring.ring-back {
  opacity: 0.34;
  box-shadow: 0 0 32px rgba(89, 216, 255, 0.08);
}

.orb-ring.ring-front {
  inset: 21% 8%;
  border-color: rgba(255, 94, 179, 0.18);
  opacity: 0.46;
}

.logo-orb {
  position: relative;
  width: min(100%, 250px);
  aspect-ratio: 1 / 1;
  padding: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orb-shell-bg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(255, 94, 179, 0.1);
}

.logo-orb::before,
.logo-orb::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  inset: -10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-orb::after {
  inset: -26px;
  border-color: rgba(89, 216, 255, 0.08);
}

.float-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--glass-strong) 82%, transparent 18%);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(115, 132, 190, 0.1);
  min-width: 180px;
}

.float-card span { display: block; color: var(--muted); margin-bottom: 6px; }
.float-card.top { top: 32px; left: 28px; }
.float-card.right { right: 22px; top: 168px; }
.float-card.bottom { left: 44px; bottom: 38px; }

.hub { margin-top: 22px; align-items: start; }

.section-top { margin-bottom: 20px; }
.section-top.wide { max-width: 760px; margin: 0 auto 18px; text-align: center; }

.wheel-stage {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 10px;
  align-items: center;
  min-height: 620px;
  padding-inline: 8px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.wheel-orbit,
.review-stage {
  position: relative;
  min-height: 460px;
  user-select: none;
  -webkit-user-select: none;
}

.wheel-stage *,
.wheel-orbit *,
.review-stage * {
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}

.wheel-stage,
.wheel-orbit,
.review-stage {
  cursor: grab;
}

.wheel-stage:active,
.wheel-orbit:active,
.review-stage:active {
  cursor: grabbing;
}

.wheel-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--glass-strong);
  border: 1px solid var(--border-soft);
  color: var(--pink);
  box-shadow: 0 12px 28px rgba(255, 94, 179, 0.1);
}

.wheel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 156px;
  margin: -78px 0 0 -78px;
  padding: 16px 14px;
  border-radius: 28px;
  border: 1px solid var(--border-soft);
  background: var(--glass-strong);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 14px 30px rgba(132, 153, 211, 0.08);
  user-select: none;
  -webkit-user-select: none;
  backdrop-filter: blur(18px);
}

.wheel-item span,
.wheel-item small,
.wheel-core span,
.wheel-core small {
  display: block;
}

.wheel-item span {
  color: var(--pink);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.wheel-item strong {
  display: block;
  margin: 10px 0 8px;
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
  line-height: 1.02;
}

.wheel-item small {
  color: var(--muted);
  line-height: 1.36;
  font-size: 0.9rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wheel-item.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 230, 246, 0.86));
  border-color: rgba(255, 94, 179, 0.28);
}

.wheel-core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 72%);
  min-height: 260px;
  padding: 34px 38px 28px;
  border-radius: 42px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 148, 204, 0.24), transparent 34%),
    radial-gradient(circle at bottom, rgba(89, 216, 255, 0.18), transparent 38%),
    var(--glass-strong);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 50px rgba(132, 153, 211, 0.12);
  user-select: none;
  -webkit-user-select: none;
  z-index: 120;
}

.wheel-core h3 {
  margin: 8px 0 10px;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 0.92;
  color: #36509a;
}

.wheel-core p {
  max-width: 290px;
  margin: 0 auto;
  line-height: 1.54;
}

.wheel-core strong {
  display: block;
  font-size: 2rem;
  color: var(--pink);
  margin-top: 14px;
}

.wheel-core small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.workspace-shell { padding: 24px; }

.workspace-tabs,
.mini-grid,
.studio-layout,
.pay-stats,
.pix-wrap {
  display: grid;
  gap: 14px;
}

.workspace-tabs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
}

.workspace-tab {
  text-align: left;
  min-height: 88px;
  padding: 16px 18px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
}

.workspace-tab span,
.workspace-tab small { display: block; }

.workspace-tab span {
  font-size: 1.02rem;
  line-height: 1.02;
  font-weight: 800;
}

.workspace-tab small {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.28;
}

.auth-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-switch button {
  min-height: 48px;
  padding: 12px 18px;
  font-weight: 700;
}

.workspace-panel {
  padding: 6px;
}

.panel-top,
.order-head,
.pay-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.studio-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.stack-form,
.review-form {
  display: grid;
  gap: 14px;
}

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

.stack-form input,
.stack-form select,
.stack-form textarea,
.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--border-soft);
  background: var(--field-bg);
  color: var(--ink);
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
  box-shadow: 0 10px 24px rgba(132, 153, 211, 0.06);
}

.stack-form textarea,
.review-form textarea,
.code-box textarea { min-height: 120px; resize: vertical; }

.stack-form input::placeholder,
.stack-form textarea::placeholder,
.review-form input::placeholder,
.review-form textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 80%, white 20%);
}

.terms-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  background: var(--glass-soft);
  border: 1px solid var(--border-soft);
}

.stack-boxes,
.list-grid,
.timeline {
  display: grid;
  gap: 14px;
}

.info-box,
.list-card,
.order-box,
.empty-box,
.tracker-box,
.timeline-item,
.review-done {
  padding: 18px;
}

.info-box.accent {
  background: var(--accent-panel);
}

.list-card,
.order-box { display: grid; gap: 14px; }
.list-actions { justify-content: flex-end; }

.order-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.order-box.focus { border-color: rgba(89, 216, 255, 0.4); }

.locked-box,
.checkout-wrap {
  display: grid;
  gap: 16px;
}

.checkout-wrap { grid-template-columns: 320px 1fr; align-items: start; }
.pay-box { display: grid; gap: 16px; }
.pay-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.gateway-shell,
.gateway-preview-panel,
.gateway-form-card,
.gateway-info-card,
.pay-live-box {
  border-radius: 28px;
  background: var(--glass-card);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 38px rgba(132, 153, 211, 0.08);
}

.gateway-shell {
  display: grid;
  gap: 16px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(89, 216, 255, 0.08), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 94, 179, 0.08), transparent 36%),
    var(--glass-card);
}

.gateway-head,
.gateway-badges,
.gateway-form-top,
.gateway-action-row,
.gateway-hero,
.mistic-card-top,
.mistic-card-foot {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gateway-head,
.gateway-form-top,
.mistic-card-top,
.mistic-card-foot {
  align-items: center;
  justify-content: space-between;
}

.gateway-head h3 {
  margin: 8px 0 10px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.gateway-badges span,
.gateway-provider,
.pix-stage-chip,
.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--glass-soft);
  border: 1px solid var(--border-soft);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.gateway-rails,
.card-entry-grid,
.gateway-mini-stats {
  display: grid;
  gap: 12px;
}

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

.gateway-rail {
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: var(--glass-soft);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 24px rgba(132, 153, 211, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.gateway-rail:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(132, 153, 211, 0.1);
}

.gateway-rail.active {
  background: linear-gradient(135deg, rgba(255, 94, 179, 0.14), rgba(89, 216, 255, 0.14));
  border-color: var(--border-strong);
}

.gateway-rail strong,
.gateway-rail small,
.gateway-rail span {
  display: block;
}

.gateway-rail strong { font-size: 1.05rem; }
.gateway-rail small,
.gateway-rail span { color: var(--muted); }
.gateway-rail span { margin-top: 8px; line-height: 1.5; }

.gateway-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 16px;
  align-items: start;
}

.gateway-preview-panel,
.gateway-form-card,
.gateway-info-card,
.pay-live-box {
  padding: 18px;
}

.gateway-preview-panel,
.gateway-form-stack {
  display: grid;
  gap: 14px;
}

.gateway-hero {
  flex-direction: column;
  align-items: flex-start;
}

.gateway-hero h4 {
  margin: 2px 0 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-family: "Baloo 2", cursive;
}

.mistic-card-surface,
.paypal-vault,
.pix-stage-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 28px;
  padding: 22px;
  color: white;
  box-shadow: 0 24px 50px rgba(24, 42, 88, 0.24);
}

.mistic-card-surface {
  display: grid;
  gap: 22px;
  background: linear-gradient(135deg, #2c4af1, #6ddcff);
}

.mistic-card-surface::before,
.paypal-vault::before,
.pix-stage-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(2px);
}

.mistic-card-surface[data-brand="visa"] { background: linear-gradient(135deg, #1d4cff, #6fd7ff); }
.mistic-card-surface[data-brand="mastercard"] { background: linear-gradient(135deg, #ff5b39, #ffb35f); }
.mistic-card-surface[data-brand="amex"] { background: linear-gradient(135deg, #00a1c9, #7de2ff); }
.mistic-card-surface[data-brand="elo"] { background: linear-gradient(135deg, #7527ff, #ff62b8); }
.mistic-card-surface[data-brand="hipercard"] { background: linear-gradient(135deg, #ff3068, #ff8e6f); }
.mistic-card-surface[data-brand="discover"] { background: linear-gradient(135deg, #ff7f2e, #ffcf63); }
.mistic-card-surface[data-brand="generic"] { background: linear-gradient(135deg, #355dff, #8d7aff); }

.mistic-card-top,
.mistic-card-foot {
  position: relative;
  z-index: 1;
}

.mistic-card-top span,
.mistic-card-foot span {
  opacity: 0.92;
}

.mistic-card-number {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.1;
  letter-spacing: 0.08em;
  font-family: "Baloo 2", cursive;
}

.mistic-card-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mistic-card-meta small {
  display: block;
  margin-bottom: 4px;
  opacity: 0.76;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mistic-card-meta b {
  font-size: 1rem;
  line-height: 1.3;
}

.paypal-vault {
  display: grid;
  gap: 16px;
  background: linear-gradient(135deg, #003087, #0070ba 54%, #63c7ff);
}

.paypal-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
}

.paypal-email {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.pix-stage-card {
  display: grid;
  align-items: end;
  background: linear-gradient(135deg, #0d8c7b, #39d2a6 50%, #9ef4dc);
}

.pix-stage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.gateway-mini-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gateway-mini-stats > div {
  border-radius: 20px;
  background: var(--glass-soft);
  border: 1px solid var(--border-soft);
  padding: 14px;
}

.gateway-mini-stats span,
.gateway-info-card span,
.field-stack span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 700;
}

.gateway-form-stack {
  display: grid;
  gap: 14px;
}

.gateway-form-top strong {
  font-size: 1.12rem;
}

.gateway-form-top span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 94, 179, 0.12), rgba(89, 216, 255, 0.14));
  color: var(--ink);
  border: 1px solid var(--border-soft);
}

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

.field-stack {
  display: grid;
  gap: 8px;
}

.field-stack.wide {
  grid-column: span 2;
}

.field-stack input,
.field-stack select,
.gateway-static-note {
  width: 100%;
  border: 1px solid var(--border-soft);
  background: var(--field-bg);
  color: var(--ink);
  border-radius: 18px;
  padding: 15px 16px;
  box-shadow: 0 10px 24px rgba(132, 153, 211, 0.06);
}

.gateway-static-note {
  line-height: 1.55;
}

.gateway-action-row {
  align-items: center;
}

.gateway-info-card strong {
  display: block;
  margin: 2px 0 8px;
  font-size: 1.02rem;
}

.gateway-info-card p,
.gateway-hero p,
.pix-stage-grid p {
  margin: 0;
  line-height: 1.6;
}

.pay-live-box {
  display: grid;
  gap: 16px;
}

.mistic-card-surface .brand-pill {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
}

.pay-stats > div,
.tracker-box,
.qr-box,
.code-box,
.orbit-card,
.feed-card {
  background: var(--glass-card);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
}

.pay-stats > div { padding: 16px; }

.pix-wrap { grid-template-columns: 220px 1fr; align-items: start; }

.qr-box {
  padding: 16px;
  box-shadow: 0 14px 30px rgba(132, 153, 211, 0.08);
}

.qr-box img {
  background: white;
  border-radius: 20px;
  padding: 10px;
}

.code-box { padding: 16px; display: grid; gap: 14px; }
.code-box textarea {
  width: 100%;
  border: 0;
  background: var(--field-contrast);
  border-radius: 18px;
  padding: 16px;
  color: var(--ink);
}

.form-message {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--glass-card);
  border: 1px solid var(--border-soft);
}

.form-message.success,
.review-done {
  background: var(--success-bg);
  border-color: rgba(64, 210, 160, 0.2);
}

.form-message.error {
  background: var(--error-bg);
  border-color: rgba(255, 94, 179, 0.2);
}

.reviews,
.orbit-section { margin-top: 24px; }

.site-footer {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.footer-shell,
.footer-bottom {
  border-radius: 34px;
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
}

.footer-brand-block,
.footer-links-block,
.footer-column {
  display: grid;
  gap: 14px;
}

.footer-brand-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand-row img {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  box-shadow: 0 18px 34px rgba(255, 94, 179, 0.14);
}

.footer-brand-row strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 0.94;
}

.footer-brand-row p,
.footer-column li,
.footer-bottom span {
  color: var(--muted);
  line-height: 1.62;
}

.footer-pills,
.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-pills span,
.footer-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--glass-soft);
  border: 1px solid var(--border-soft);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.footer-links-block {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-column {
  padding: 18px;
  border-radius: 28px;
  background: var(--glass-soft);
  border: 1px solid var(--border-soft);
}

.footer-column strong {
  font-size: 1.05rem;
}

.footer-column ul {
  margin: 0;
  padding-left: 18px;
}

.footer-column li + li {
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 22px;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 42s linear infinite;
  padding: 10px 0;
}

.feed-card {
  width: 320px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(132, 153, 211, 0.08);
}

.feed-card.highlight {
  background: linear-gradient(180deg, rgba(255, 248, 252, 0.92), rgba(238, 252, 255, 0.92));
}

.feed-top,
.stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feed-top { justify-content: space-between; margin-bottom: 12px; }
.stars span { color: #ffd15e; opacity: 0.25; }
.stars span.on { opacity: 1; }

.review-stage {
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  touch-action: none;
}

.review-stage::before,
.review-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.review-stage::before {
  width: min(720px, 92vw);
  height: min(720px, 92vw);
  border: 2px solid rgba(255, 94, 179, 0.16);
  filter: blur(1px);
  box-shadow: 0 0 58px rgba(255, 94, 179, 0.14);
}

.review-stage::after {
  width: min(520px, 84vw);
  height: min(520px, 84vw);
  border: 1px dashed rgba(89, 216, 255, 0.22);
}

.ring {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid rgba(255, 94, 179, 0.18);
  filter: blur(1px);
}

.ring.outer { width: min(680px, 88vw); height: min(680px, 88vw); box-shadow: 0 0 34px rgba(255, 94, 179, 0.14); }
.ring.inner { width: min(440px, 62vw); height: min(440px, 62vw); border-color: rgba(89, 216, 255, 0.22); box-shadow: 0 0 24px rgba(89, 216, 255, 0.14); }

.orbit-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  margin: -110px 0 0 -125px;
  padding: 22px;
  border-radius: 28px;
  background: var(--glass-strong);
  box-shadow: 0 24px 54px rgba(132, 153, 211, 0.12);
  transition: transform 240ms ease, opacity 240ms ease, box-shadow 240ms ease;
  user-select: none;
  -webkit-user-select: none;
}

.orbit-card:hover {
  transform: scale(1.02) translate3d(0, -2px, 0);
  box-shadow: 0 26px 62px rgba(132, 153, 211, 0.18);
}

.orbit-card.highlight {
  background: linear-gradient(180deg, rgba(255, 247, 252, 0.94), rgba(240, 252, 255, 0.92));
}

.orbit-core-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-align: center;
  background: radial-gradient(circle at top, var(--glass-strong), var(--glass-card));
  border: 1px solid var(--border-soft);
  box-shadow: 0 28px 68px rgba(132, 153, 211, 0.1);
  user-select: none;
  -webkit-user-select: none;
}

.orbit-core-badge span { color: var(--muted); display: block; }

.guide-section {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.guide-grid,
.delivery-guide-grid,
.tax-guide-grid {
  display: grid;
  gap: 16px;
}

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

.guide-panel,
.delivery-guide-shell,
.rule-card,
.term-card,
.delivery-card,
.tax-card {
  border-radius: 30px;
  background: var(--glass-card);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 38px rgba(132, 153, 211, 0.08);
}

.guide-panel,
.delivery-guide-shell {
  padding: 24px;
}

.guide-panel-top h3 {
  margin: 10px 0 8px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.guide-panel-top p,
.rule-card p,
.term-card p,
.delivery-card p,
.delivery-card li,
.tax-card p,
.tax-card small {
  color: var(--muted);
  line-height: 1.62;
}

.rule-list,
.terms-stack {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.rule-card,
.term-card,
.delivery-card,
.tax-card {
  padding: 18px;
}

.rule-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}

.rule-index {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 94, 179, 0.16), rgba(89, 216, 255, 0.18));
  color: var(--ink);
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
  font-weight: 800;
}

.rule-card strong,
.term-card strong,
.delivery-card strong,
.tax-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.delivery-guide-shell {
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(89, 216, 255, 0.08), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 94, 179, 0.08), transparent 36%),
    var(--glass-card);
}

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

.delivery-card > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 94, 179, 0.12), rgba(89, 216, 255, 0.14));
  border: 1px solid var(--border-soft);
  color: var(--ink);
  font-weight: 700;
}

.delivery-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.delivery-card li + li {
  margin-top: 8px;
}

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

.tax-card small {
  display: block;
  margin-top: 10px;
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: none;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  background: var(--glass-strong);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 34px rgba(132, 153, 211, 0.12);
  z-index: 25;
}

.mobile-dock button { padding: 10px 12px; }

body[data-theme="dark"] .topbar,
body[data-theme="dark"] .hero-copy,
body[data-theme="dark"] .hero-visual,
body[data-theme="dark"] .method-card-shell,
body[data-theme="dark"] .workspace-shell,
body[data-theme="dark"] .gateway-shell,
body[data-theme="dark"] .gateway-preview-panel,
body[data-theme="dark"] .gateway-form-card,
body[data-theme="dark"] .gateway-info-card,
body[data-theme="dark"] .feed-card,
body[data-theme="dark"] .review-stage,
body[data-theme="dark"] .mobile-dock,
body[data-theme="dark"] .hero-stats > div,
body[data-theme="dark"] .info-box,
body[data-theme="dark"] .list-card,
body[data-theme="dark"] .order-box,
body[data-theme="dark"] .empty-box,
body[data-theme="dark"] .tracker-box,
body[data-theme="dark"] .timeline-item,
body[data-theme="dark"] .pay-stats > div,
body[data-theme="dark"] .qr-box,
body[data-theme="dark"] .code-box,
body[data-theme="dark"] .pay-live-box,
body[data-theme="dark"] .orbit-card,
body[data-theme="dark"] .float-card,
body[data-theme="dark"] .terms-row,
body[data-theme="dark"] .form-message,
body[data-theme="dark"] .review-done {
  box-shadow: 0 22px 48px rgba(2, 8, 24, 0.34);
}

body[data-theme="dark"] .topbar,
body[data-theme="dark"] .hero-copy,
body[data-theme="dark"] .method-card-shell,
body[data-theme="dark"] .workspace-shell,
body[data-theme="dark"] .review-stage,
body[data-theme="dark"] .guide-panel,
body[data-theme="dark"] .delivery-guide-shell,
body[data-theme="dark"] .gateway-shell,
body[data-theme="dark"] .gateway-preview-panel,
body[data-theme="dark"] .gateway-form-card,
body[data-theme="dark"] .gateway-info-card {
  background: linear-gradient(180deg, rgba(10, 18, 35, 0.94), rgba(6, 12, 24, 0.9));
  border-color: rgba(120, 190, 255, 0.12);
}

body[data-theme="dark"] .hero-visual {
  background: var(--hero-visual-bg);
  border-color: rgba(120, 190, 255, 0.1);
}

body[data-theme="dark"] .hero-orb-stage::before {
  background: radial-gradient(circle at 35% 30%, rgba(200, 244, 255, 0.12), rgba(89, 216, 255, 0.04) 50%, transparent 76%);
  border-color: rgba(126, 196, 255, 0.12);
}

body[data-theme="dark"] .orb-ring.ring-back {
  border-color: rgba(89, 216, 255, 0.14);
}

body[data-theme="dark"] .orb-ring.ring-front {
  border-color: rgba(255, 94, 179, 0.14);
}

body[data-theme="dark"] .nav-btn,
body[data-theme="dark"] .ghost-action,
body[data-theme="dark"] .workspace-tab,
body[data-theme="dark"] .auth-switch button,
body[data-theme="dark"] .mobile-dock button,
body[data-theme="dark"] .profile-chip,
body[data-theme="dark"] .theme-toggle,
body[data-theme="dark"] .gateway-rail,
body[data-theme="dark"] .wheel-item,
body[data-theme="dark"] .wheel-arrow {
  background: linear-gradient(180deg, rgba(10, 17, 32, 0.92), rgba(7, 13, 25, 0.88));
  border-color: rgba(120, 190, 255, 0.12);
  color: #edf4ff;
}

body[data-theme="dark"] .nav-btn.active,
body[data-theme="dark"] .workspace-tab.active,
body[data-theme="dark"] .auth-switch button.active,
body[data-theme="dark"] .mobile-dock button.active,
body[data-theme="dark"] .gateway-rail.active,
body[data-theme="dark"] .wheel-item.active {
  background: linear-gradient(135deg, rgba(23, 45, 81, 0.96), rgba(12, 91, 131, 0.82));
  border-color: rgba(139, 221, 255, 0.26);
  color: white;
}

body[data-theme="dark"] .theme-toggle {
  background: linear-gradient(180deg, rgba(10, 18, 36, 0.94), rgba(7, 13, 25, 0.9));
}

body[data-theme="dark"] .hero-stats > div,
body[data-theme="dark"] .info-box,
body[data-theme="dark"] .feed-card,
body[data-theme="dark"] .list-card,
body[data-theme="dark"] .order-box,
body[data-theme="dark"] .empty-box,
body[data-theme="dark"] .tracker-box,
body[data-theme="dark"] .timeline-item,
body[data-theme="dark"] .pay-stats > div,
body[data-theme="dark"] .qr-box,
body[data-theme="dark"] .code-box,
body[data-theme="dark"] .pay-live-box,
body[data-theme="dark"] .orbit-card,
body[data-theme="dark"] .float-card,
body[data-theme="dark"] .terms-row,
body[data-theme="dark"] .form-message,
body[data-theme="dark"] .review-done,
body[data-theme="dark"] .rule-card,
body[data-theme="dark"] .term-card,
body[data-theme="dark"] .delivery-card,
body[data-theme="dark"] .tax-card,
body[data-theme="dark"] .footer-shell,
body[data-theme="dark"] .footer-bottom,
body[data-theme="dark"] .footer-column {
  background: linear-gradient(180deg, rgba(10, 16, 30, 0.9), rgba(7, 12, 23, 0.86));
  border-color: rgba(120, 190, 255, 0.1);
}

body[data-theme="dark"] .hero h1 {
  text-shadow: 0 10px 30px rgba(3, 8, 20, 0.22);
}

body[data-theme="dark"] .hero-badge,
body[data-theme="dark"] .mini-kicker,
body[data-theme="dark"] .pill {
  color: #ff9fd2;
}

body[data-theme="dark"] .wheel-core h3 {
  color: #f1f6ff;
}

body[data-theme="dark"] .hero p,
body[data-theme="dark"] .section-top p,
body[data-theme="dark"] .workspace-panel p,
body[data-theme="dark"] .feed-card p,
body[data-theme="dark"] .orbit-card p,
body[data-theme="dark"] .info-box p,
body[data-theme="dark"] .rule-card p,
body[data-theme="dark"] .term-card p,
body[data-theme="dark"] .delivery-card p,
body[data-theme="dark"] .delivery-card li,
body[data-theme="dark"] .tax-card p,
body[data-theme="dark"] .tax-card small {
  color: #9db3d9;
}

body[data-theme="dark"] .brand small,
body[data-theme="dark"] .hero-stats span,
body[data-theme="dark"] .info-box span,
body[data-theme="dark"] .pay-stats span,
body[data-theme="dark"] .order-meta span,
body[data-theme="dark"] .float-card span,
body[data-theme="dark"] .gateway-info-card span,
body[data-theme="dark"] .field-stack span,
body[data-theme="dark"] .theme-toggle-copy small,
body[data-theme="dark"] .footer-brand-row p,
body[data-theme="dark"] .footer-column li,
body[data-theme="dark"] .footer-bottom span {
  color: #88a2cf;
}

body[data-theme="dark"] .nav-btn,
body[data-theme="dark"] .ghost-action,
body[data-theme="dark"] .workspace-tab,
body[data-theme="dark"] .auth-switch button,
body[data-theme="dark"] .mobile-dock button,
body[data-theme="dark"] .profile-chip,
body[data-theme="dark"] .theme-toggle,
body[data-theme="dark"] .gateway-rail,
body[data-theme="dark"] .wheel-item,
body[data-theme="dark"] .wheel-arrow {
  box-shadow: 0 16px 30px rgba(2, 8, 24, 0.22);
}

body[data-theme="dark"] .nav-btn.active,
body[data-theme="dark"] .workspace-tab.active,
body[data-theme="dark"] .auth-switch button.active,
body[data-theme="dark"] .mobile-dock button.active,
body[data-theme="dark"] .gateway-rail.active,
body[data-theme="dark"] .wheel-item.active {
  background: linear-gradient(135deg, rgba(255, 94, 179, 0.18), rgba(89, 216, 255, 0.16));
  border-color: rgba(133, 203, 255, 0.38);
}

body[data-theme="dark"] .gateway-form-top span,
body[data-theme="dark"] .gateway-badges span,
body[data-theme="dark"] .gateway-provider,
body[data-theme="dark"] .pix-stage-chip,
body[data-theme="dark"] .brand-pill {
  border-color: rgba(133, 203, 255, 0.26);
}

body[data-theme="dark"] .feed-card.highlight,
body[data-theme="dark"] .orbit-card.highlight {
  background: linear-gradient(180deg, rgba(22, 34, 64, 0.96), rgba(10, 35, 60, 0.92));
}

body[data-theme="dark"] .logo-orb::before,
body[data-theme="dark"] .logo-orb::after,
body[data-theme="dark"] .review-stage::before,
body[data-theme="dark"] .review-stage::after,
body[data-theme="dark"] .ring,
body[data-theme="dark"] .hero-visual::before {
  opacity: 0.82;
}

body[data-theme="dark"] .qr-box img {
  background: #ffffff;
}

body[data-theme="dark"] .ambient-bubble {
  border-color: rgba(134, 201, 255, 0.16);
  box-shadow: 0 0 72px rgba(89, 216, 255, 0.08), inset 0 0 28px rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .ambient-bubble::after {
  border-color: rgba(89, 216, 255, 0.14);
}

body[data-theme="dark"] .logo-orb {
  box-shadow: 0 34px 78px rgba(2, 8, 24, 0.44);
}

body[data-theme="dark"] .wheel-core {
  background:
    radial-gradient(circle at top, rgba(89, 216, 255, 0.14), transparent 30%),
    radial-gradient(circle at bottom, rgba(255, 94, 179, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(11, 20, 40, 0.96), rgba(7, 13, 25, 0.92));
  border-color: rgba(120, 190, 255, 0.14);
}

body[data-theme="dark"] .cursor-core {
  border-color: rgba(196, 255, 255, 0.84);
  background: linear-gradient(135deg, rgba(211, 255, 255, 0.98), rgba(115, 230, 255, 0.84));
  box-shadow: 0 0 24px rgba(111, 240, 255, 0.34), 0 0 56px rgba(111, 240, 255, 0.16);
}

body[data-theme="dark"] .cursor-bloom {
  background: linear-gradient(135deg, rgba(111, 240, 255, 0.24), rgba(111, 240, 255, 0.03));
  box-shadow: 0 0 56px rgba(111, 240, 255, 0.16), 0 0 90px rgba(111, 240, 255, 0.12);
}

body[data-theme="dark"] .trail-node,
body[data-theme="dark"] .trail-spark {
  border-color: rgba(184, 248, 255, 0.8);
}

body[data-theme="dark"] .trail-orb {
  border-color: rgba(156, 221, 255, 0.18);
  box-shadow: 0 0 26px rgba(111, 240, 255, 0.08);
}

body[data-theme="dark"] .footer-pills span,
body[data-theme="dark"] .footer-link-btn {
  background: linear-gradient(180deg, rgba(10, 17, 32, 0.92), rgba(7, 13, 25, 0.88));
  border-color: rgba(120, 190, 255, 0.12);
  color: #edf4ff;
}

@keyframes floatBubble {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes toggleGlow {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 12px 24px rgba(255, 94, 179, 0.18); }
  50% { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 16px 28px rgba(89, 216, 255, 0.18); }
}

@keyframes toggleSweep {
  0%, 45%, 100% { transform: translateX(-135%); }
  60% { transform: translateX(135%); }
}

@keyframes toggleKnob {
  0%, 100% { box-shadow: 0 10px 16px rgba(17, 48, 88, 0.14); }
  50% { box-shadow: 0 14px 20px rgba(72, 182, 255, 0.18); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

@media (max-width: 1180px) {
  .hero,
  .hub,
  .studio-layout,
  .checkout-wrap,
  .pix-wrap { grid-template-columns: 1fr; }

  .gateway-layout,
  .gateway-rails { grid-template-columns: 1fr 1fr; }

  .topbar {
    border-radius: 28px;
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .top-actions { justify-content: flex-start; }
  .top-meta { justify-content: flex-start; }
  .workspace-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-shell,
  .footer-links-block { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-v2 {
    width: min(100%, calc(100% - 20px));
    padding-bottom: 148px;
  }

  .top-actions,
  .workspace-tabs { display: none; }
  .mobile-dock {
    display: flex;
    width: min(100% - 16px, 560px);
    overflow-x: auto;
    padding: 8px;
    gap: 6px;
  }

  .topbar {
    position: static;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 12px;
    padding: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 1.14rem;
  }

  .top-meta {
    width: 100%;
    justify-content: stretch;
  }

  .theme-toggle {
    width: 100%;
    justify-content: flex-start;
  }

  .profile-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-copy,
  .method-card-shell,
  .workspace-shell,
  .review-stage,
  .footer-shell,
  .footer-bottom { padding: 20px; }

  .hero h1,
  .section-top h2 { font-size: clamp(2rem, 11vw, 3rem); }

  .wheel-stage {
    grid-template-columns: 44px 1fr 44px;
    min-height: 360px;
    gap: 6px;
    padding-inline: 0;
  }

  .wheel-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    align-self: center;
  }

  .wheel-core {
    width: min(100%, 250px);
    min-height: 250px;
    border-radius: 50%;
    padding: 26px 24px;
  }

  .wheel-core h3 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .wheel-core p {
    max-width: 190px;
    font-size: 0.96rem;
  }

  .mini-grid,
  .pay-stats,
  .order-meta,
  .gateway-rails,
  .gateway-layout,
  .gateway-mini-stats,
  .card-entry-grid,
  .guide-grid,
  .delivery-guide-grid,
  .tax-guide-grid,
  .footer-links-block { grid-template-columns: 1fr; }

  .field-stack.wide {
    grid-column: auto;
  }

  .float-card.top,
  .float-card.right,
  .float-card.bottom {
    position: static;
    min-width: 0;
  }

  .hero-visual {
    min-height: auto;
    gap: 14px;
    padding: 18px;
  }

  .hero-orb-stage {
    width: min(100%, 290px);
  }

  .logo-orb {
    width: min(100%, 198px);
    padding: 20px;
  }

  .footer-brand-row {
    flex-direction: column;
  }

  .footer-column {
    padding: 16px;
  }

  .feed-card { width: 270px; }
  .review-stage { min-height: 520px; }
  .orbit-card { width: 200px; margin-left: -100px; }
  .ambient-cloud,
  .bubble-1,
  .bubble-3,
  .bubble-6 { display: none; }

  .gateway-shell,
  .gateway-preview-panel,
  .gateway-form-card,
  .gateway-info-card,
  .pay-live-box { padding: 16px; }

  .mistic-card-surface,
  .paypal-vault,
  .pix-stage-card { min-height: 0; }

  .guide-panel,
  .delivery-guide-shell,
  .rule-card,
  .term-card,
  .delivery-card,
  .tax-card {
    overflow-wrap: anywhere;
  }

  .rule-card {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .rule-index {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 1rem;
  }

  .mobile-dock button {
    white-space: nowrap;
    padding: 10px 14px;
  }
}

@media (pointer: coarse) {
  .pointer-field { display: none; }
}
