:root {
  color-scheme: dark;
  --bg: #02040a;
  --bg-soft: rgba(5, 12, 24, 0.74);
  --panel: rgba(10, 19, 34, 0.72);
  --panel-strong: rgba(9, 18, 33, 0.92);
  --line: rgba(97, 255, 188, 0.2);
  --line-strong: rgba(123, 242, 255, 0.45);
  --text: #eef8ff;
  --muted: #95a9c3;
  --accent: #45ffbc;
  --accent-2: #60a5ff;
  --accent-3: #ae7cff;
  --danger: #ff668f;
  --warning: #ffcc66;
  --success: #31f2b2;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 255, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(69, 255, 188, 0.14), transparent 25%),
    radial-gradient(circle at 50% 120%, rgba(174, 124, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #010207 0%, #050a14 50%, #02050b 100%);
  color: var(--text);
  overflow-x: hidden;
}

body[data-authenticated="true"] [data-guest-only] {
  display: none !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
  pointer-events: none;
  z-index: -1;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font: inherit;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}

input[type="checkbox"]::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #45ffbc, #60a5ff);
  transform: scale(0);
  transition: transform 0.18s ease;
}

input[type="checkbox"]:checked::after {
  transform: scale(1);
}

.page-shell {
  position: relative;
  isolation: isolate;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.aurora {
  position: fixed;
  inset: auto;
  width: 35rem;
  height: 35rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

.aurora.one {
  top: 0;
  left: -8rem;
  background: rgba(96, 165, 255, 0.45);
}

.aurora.two {
  top: 20rem;
  right: -8rem;
  background: rgba(69, 255, 188, 0.3);
}

.aurora.three {
  bottom: -8rem;
  left: 30%;
  background: rgba(174, 124, 255, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(2, 7, 16, 0.72);
  border-bottom: 1px solid rgba(96, 165, 255, 0.12);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-orb {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  --brand-logo: url("./logo-sikkasense.png");
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 25%),
    linear-gradient(135deg, rgba(7, 14, 24, 0.95), rgba(10, 18, 31, 0.92)),
    var(--brand-logo);
  background-size: cover, cover, 92%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 32px rgba(96, 165, 255, 0.32), 0 0 0 1px rgba(69, 255, 188, 0.16);
  position: relative;
  overflow: hidden;
}

.brand-orb::after {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  border: 1px solid rgba(255, 209, 102, 0.28);
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.32);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transform-style: preserve-3d;
  transition: transform 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  border-color: rgba(69, 255, 188, 0.24);
  box-shadow: 0 0 24px rgba(69, 255, 188, 0.12);
}

.nav-link.admin-link {
  border-color: rgba(255, 209, 102, 0.18);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.08), rgba(96, 165, 255, 0.08));
}

.menu-toggle {
  display: none;
}

.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 5rem;
}

.section {
  margin-top: 2rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 255, 0.18);
  color: #b2c6de;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px rgba(69, 255, 188, 0.55);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
  font-family: "Sora", "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.lead {
  font-size: 1.06rem;
  max-width: 65ch;
}

.hero-grid,
.split-grid,
.dashboard-grid,
.pricing-grid,
.stats-grid,
.content-grid,
.signal-grid,
.blog-grid,
.step-grid,
.broker-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-grid {
  grid-template-columns: 1.25fr 0.95fr;
  align-items: stretch;
  min-height: 75vh;
}

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

.content-grid {
  grid-template-columns: 1.3fr 0.7fr;
}

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

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

.signal-grid,
.blog-grid,
.broker-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

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

.glass-panel,
.tilt-card,
.floating-card,
.metric-card,
.widget-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(5, 12, 24, 0.72);
  border: 1px solid rgba(111, 148, 191, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glass-panel::before,
.tilt-card::before,
.floating-card::before,
.metric-card::before,
.widget-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.glass-panel::after,
.tilt-card::after,
.floating-card::after,
.metric-card::after,
.widget-card::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(69, 255, 188, 0.08));
  opacity: 0.35;
  pointer-events: none;
}

.panel-body {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
}

.headline-gradient {
  background: linear-gradient(135deg, #f7fcff 10%, #98c6ff 40%, #5cf1cb 72%, #e8f2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions,
.stack-inline,
.inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-neo,
.btn-secondary,
.filter-chip,
.plan-badge,
.widget-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 255, 0.24);
  color: var(--text);
  background: linear-gradient(135deg, rgba(69, 255, 188, 0.18), rgba(96, 165, 255, 0.14));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), 0 0 0 rgba(69, 255, 188, 0);
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  cursor: pointer;
}

.btn-neo:hover,
.btn-secondary:hover,
.filter-chip:hover,
.plan-badge:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36), 0 0 28px rgba(69, 255, 188, 0.15);
  border-color: rgba(69, 255, 188, 0.45);
}

.filter-chip.active,
.plan-badge.active {
  background: linear-gradient(135deg, rgba(69, 255, 188, 0.28), rgba(96, 165, 255, 0.22));
  border-color: rgba(69, 255, 188, 0.45);
  color: var(--text);
  box-shadow: 0 0 26px rgba(69, 255, 188, 0.18);
}

.btn-neo:focus,
.btn-secondary:focus,
.filter-chip:focus,
.plan-badge:focus,
select:focus,
input:focus,
button:focus {
  outline: none;
  border-color: rgba(69, 255, 188, 0.45);
  box-shadow: 0 0 0 3px rgba(69, 255, 188, 0.12);
}

.btn-secondary,
.filter-chip {
  background: rgba(255, 255, 255, 0.035);
}

.btn-full {
  width: 100%;
}

.ripple {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple 0.8s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(4);
  }
}

.data-ribbon {
  display: grid;
  gap: 0.9rem;
}

.ticker-strip {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.ticker-pill,
.signal-chip,
.mini-stat,
.rate-chip {
  padding: 0.75rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d3e3f5;
  min-width: 8rem;
}

.rate-strip {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.rate-strip-marquee {
  overflow: hidden;
  padding-bottom: 0;
}

.rate-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
  animation: ratesMarquee 26s linear infinite;
}

.rate-dot {
  color: rgba(154, 181, 214, 0.7);
  font-size: 1.1rem;
}

@keyframes ratesMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.admin-room-panel {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

.admin-room-copy {
  display: grid;
  gap: 1rem;
}

.admin-room-meta {
  display: grid;
  gap: 0.8rem;
}

.admin-room-chip {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-room-chip span {
  display: block;
  color: #9eb3cd;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.admin-room-chip strong {
  color: var(--text);
  font-size: 1rem;
}

.admin-room-orbit {
  position: relative;
  min-height: 18rem;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(96, 165, 255, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(7, 14, 24, 0.95), rgba(6, 11, 21, 0.84));
  border: 1px solid rgba(96, 165, 255, 0.16);
}

.admin-room-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 20%),
    linear-gradient(135deg, rgba(255, 209, 102, 0.95), rgba(96, 165, 255, 0.8), rgba(69, 255, 188, 0.72));
  box-shadow: 0 0 60px rgba(96, 165, 255, 0.24);
}

.admin-room-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 255, 0.22);
  transform: translate(-50%, -50%);
}

.admin-room-ring.one {
  width: 16rem;
  height: 16rem;
  animation: spinGlobe 16s linear infinite;
}

.admin-room-ring.two {
  width: 12rem;
  height: 12rem;
  border-color: rgba(69, 255, 188, 0.22);
  animation: spinGlobe 12s linear infinite reverse;
}

.admin-room-tag {
  position: absolute;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(3, 10, 20, 0.88);
  border: 1px solid rgba(255, 209, 102, 0.16);
  color: #f4fbff;
  box-shadow: 0 0 22px rgba(96, 165, 255, 0.1);
}

.admin-room-tag.top {
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.admin-room-tag.right {
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.admin-room-tag.bottom {
  bottom: 1.2rem;
  left: 18%;
}

.ticker-pill strong,
.mini-stat strong,
.stat-value,
.price-spot {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.price-up {
  color: var(--success);
}

.price-down {
  color: var(--danger);
}

.subtle-grid {
  display: grid;
  gap: 1rem;
}

.metrics-list,
.signal-meta,
.pricing-list,
.faq-list,
.article-meta,
.table-list,
.footer-links {
  display: grid;
  gap: 0.8rem;
}

.metric-card,
.widget-card {
  padding: 1.3rem;
}

.metric-card h3,
.widget-card h3 {
  margin-bottom: 0.5rem;
}

.tilt-card,
.floating-card {
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
}

.tilt-card:hover,
.floating-card:hover {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4), 0 0 40px rgba(96, 165, 255, 0.12);
  border-color: rgba(69, 255, 188, 0.28);
}

.floating-card {
  animation: floatCard 5.8s ease-in-out infinite;
}

.floating-card:nth-child(2n) {
  animation-delay: -1.8s;
}

.floating-card:nth-child(3n) {
  animation-delay: -2.8s;
}

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

.orbital-badge,
.glow-dot,
.trend-line {
  position: absolute;
  pointer-events: none;
}

.orbital-badge {
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(5, 16, 32, 0.88);
  border: 1px solid rgba(96, 165, 255, 0.26);
  font-size: 0.78rem;
  color: #d8e7f6;
}

.glow-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(69, 255, 188, 0.8);
}

.glow-dot.right {
  right: 1rem;
  bottom: 1rem;
}

.hero-globe {
  position: relative;
  min-height: 100%;
  padding: 1.5rem;
  display: grid;
  place-items: center;
}

.globe-shell {
  width: min(100%, 24rem);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), transparent 14%),
    radial-gradient(circle at 65% 65%, rgba(69, 255, 188, 0.4), transparent 20%),
    linear-gradient(180deg, rgba(15, 64, 123, 0.9), rgba(10, 21, 39, 0.3));
  box-shadow: inset -20px -24px 60px rgba(3, 8, 16, 0.75), 0 0 85px rgba(96, 165, 255, 0.26);
  animation: spinGlobe 16s linear infinite;
}

.globe-shell::before,
.globe-shell::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.globe-shell::after {
  inset: -6%;
  border-color: rgba(69, 255, 188, 0.18);
}

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

.hero-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(110%, 26rem);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(96, 165, 255, 0.18);
  box-shadow: 0 0 60px rgba(96, 165, 255, 0.1);
}

.hero-ring.small {
  width: 70%;
  border-color: rgba(69, 255, 188, 0.18);
}

.coin-tag {
  position: absolute;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(96, 165, 255, 0.28);
  background: rgba(5, 17, 32, 0.84);
  color: #f4fbff;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(96, 165, 255, 0.16);
  animation: driftCoin 6s ease-in-out infinite;
}

.coin-tag.one {
  top: 5%;
  left: 5%;
}

.coin-tag.two {
  top: 20%;
  right: 0;
  animation-delay: -1s;
}

.coin-tag.three {
  left: 8%;
  bottom: 8%;
  animation-delay: -2s;
}

.coin-tag.four {
  right: 9%;
  bottom: 16%;
  animation-delay: -3s;
}

@keyframes driftCoin {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(6deg);
  }
}

.kpi-row,
.card-actions,
.card-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.kpi-block {
  flex: 1;
  min-width: 9rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.kpi-block strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.signal-card .score-ring,
.heatmap-cell .score-ring,
.dashboard-avatar {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 55%),
    conic-gradient(from 0deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  box-shadow: inset 0 0 0 6px rgba(2, 6, 12, 0.92), 0 0 26px rgba(96, 165, 255, 0.18);
}

.dashboard-avatar {
  width: 4.8rem;
  height: 4.8rem;
}

.signal-card,
.heatmap-cell,
.pricing-card,
.step-card,
.blog-card,
.broker-card {
  padding: 1.4rem;
}

.signal-card {
  display: grid;
  gap: 1rem;
}

.signal-top,
.chart-frame-header,
.table-row,
.faq-item summary,
.price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.signal-pair,
.price-header strong {
  font-size: 1.32rem;
  color: var(--text);
  letter-spacing: -0.04em;
}

.tag-up,
.tag-down,
.tag-neutral {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.tag-up {
  background: rgba(49, 242, 178, 0.14);
  color: #7dffdd;
}

.tag-down {
  background: rgba(255, 102, 143, 0.12);
  color: #ff97b5;
}

.tag-neutral {
  background: rgba(255, 204, 102, 0.12);
  color: #ffd783;
}

.progress-track {
  width: 100%;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: var(--progress, 50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  border-radius: inherit;
  box-shadow: 0 0 20px rgba(69, 255, 188, 0.32);
  transition: width 0.7s ease;
}

.chart-frame {
  padding: 1rem;
}

.chart-viewport {
  min-height: 460px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(13, 20, 36, 0.82), rgba(7, 12, 22, 0.95)),
    radial-gradient(circle at top, rgba(96, 165, 255, 0.14), transparent 40%);
  position: relative;
}

.chart-viewport.small {
  min-height: 340px;
}

.chart-viewport canvas {
  width: 100% !important;
  height: 100% !important;
}

.tv-chart-host {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.tv-chart-frame {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  border-radius: 20px;
  background: #07101d;
}

.chart-viewport-xl {
  min-height: 560px;
}

.chart-toolbar {
  display: grid;
  gap: 0.9rem;
}

.chart-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
}

.chart-indicator-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chart-indicator-pill,
.chart-countdown {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #dce9f7;
  font-size: 0.88rem;
}

.chart-indicator-pill.up {
  border-color: rgba(69, 255, 188, 0.32);
  color: #8ff7d6;
}

.chart-indicator-pill.down {
  border-color: rgba(255, 102, 143, 0.28);
  color: #ff9eb9;
}

.chart-status {
  color: #a7c0db;
}

.chart-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chart-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
}

.chart-overlay span {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(2, 10, 20, 0.8);
  border: 1px solid rgba(69, 255, 188, 0.2);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

.field-label {
  display: grid;
  gap: 0.55rem;
  color: #dce9f7;
  font-size: 0.95rem;
}

.field-label input,
.field-label select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(96, 165, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  outline: none;
  color-scheme: dark;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.field-label input:focus,
.field-label select:focus {
  border-color: rgba(69, 255, 188, 0.45);
  box-shadow: 0 0 0 4px rgba(69, 255, 188, 0.08);
}

body[data-authenticated="true"] [data-guest-only] {
  display: none !important;
}

.field-label select option {
  background: #0d1626;
  color: #eef8ff;
}

select,
option,
optgroup {
  background-color: #0d1626;
  color: #eef8ff;
}

.native-select-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.option-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.option-pill {
  flex: 1 1 8rem;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(96, 165, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(8, 14, 25, 0.92);
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.option-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(69, 255, 188, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), 0 0 18px rgba(96, 165, 255, 0.1);
}

.option-pill.active {
  border-color: rgba(69, 255, 188, 0.45);
  background:
    linear-gradient(135deg, rgba(69, 255, 188, 0.16), rgba(96, 165, 255, 0.12)),
    rgba(8, 14, 25, 0.96);
  box-shadow: 0 0 24px rgba(69, 255, 188, 0.12);
}

.auth-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.auth-plan-option {
  min-height: 86px;
  text-align: left;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(8, 14, 25, 0.92);
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.auth-plan-option:hover {
  transform: translateY(-3px);
  border-color: rgba(69, 255, 188, 0.28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26), 0 0 22px rgba(96, 165, 255, 0.12);
}

.auth-plan-option.active {
  border-color: rgba(69, 255, 188, 0.45);
  background:
    linear-gradient(135deg, rgba(69, 255, 188, 0.14), rgba(96, 165, 255, 0.12)),
    rgba(8, 14, 25, 0.98);
  box-shadow: 0 0 28px rgba(69, 255, 188, 0.14);
}

.auth-plan-option span,
.auth-plan-option strong {
  display: block;
}

.auth-plan-option span {
  font-size: 0.9rem;
  color: #9fb4ce;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.auth-plan-option strong {
  font-size: 1rem;
  color: var(--text);
}

.signal-lock-note {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 209, 102, 0.18);
  background: rgba(255, 209, 102, 0.07);
  color: #ffe4a5;
  line-height: 1.65;
}

.signal-lock-note.success {
  border-color: rgba(69, 255, 188, 0.22);
  background: rgba(69, 255, 188, 0.07);
  color: #b7ffe6;
}

.locked-preview-card {
  border-color: rgba(255, 209, 102, 0.2);
}

.upgrade-offer {
  display: grid;
  gap: 1rem;
}

.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.heatmap-cell {
  min-height: 140px;
  display: grid;
  align-content: space-between;
}

.heatmap-cell.strong {
  background:
    linear-gradient(180deg, rgba(49, 242, 178, 0.18), rgba(8, 18, 29, 0.94)),
    rgba(8, 18, 29, 0.94);
}

.heatmap-cell.weak {
  background:
    linear-gradient(180deg, rgba(255, 102, 143, 0.16), rgba(8, 18, 29, 0.94)),
    rgba(8, 18, 29, 0.94);
}

.bar-stack {
  display: flex;
  align-items: end;
  gap: 0.65rem;
  min-height: 150px;
}

.bar-stack span {
  flex: 1;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, rgba(174, 124, 255, 0.86), rgba(69, 255, 188, 0.22));
  border: 1px solid rgba(174, 124, 255, 0.24);
  box-shadow: inset 0 -14px 18px rgba(0, 0, 0, 0.28), 0 0 24px rgba(174, 124, 255, 0.12);
  transition: height 0.7s ease;
}

.pricing-card.popular {
  border-color: rgba(69, 255, 188, 0.4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.44), 0 0 40px rgba(69, 255, 188, 0.14);
}

.pricing-card ul,
.comparison-table ul,
.article-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card li,
.comparison-table li,
.article-body li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--muted);
}

.pricing-card li::before,
.comparison-table li::before,
.article-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 10px rgba(69, 255, 188, 0.35);
}

.comparison-table {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

th {
  color: #e5f0fc;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  padding: 1rem 1.1rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: #eff8ff;
  font-weight: 600;
}

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

.faq-item p {
  margin-top: 0.8rem;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.user-card {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mini-chart {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 250px;
}

.footer {
  border-top: 1px solid rgba(96, 165, 255, 0.12);
  background: rgba(2, 6, 12, 0.68);
}

.footer-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 2.8rem;
  display: grid;
  gap: 1rem;
}

.disclaimer {
  color: #8ca2bf;
  font-size: 0.92rem;
}

.muted-note {
  font-size: 0.92rem;
  color: #8da2bc;
}

.mobile-only {
  display: none;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .content-grid,
  .dashboard-grid,
  .pricing-grid,
  .stats-grid,
  .signal-grid,
  .blog-grid,
  .step-grid,
  .broker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid .metric-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding-top: 0.75rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .content-grid,
  .dashboard-grid,
  .pricing-grid,
  .stats-grid,
  .signal-grid,
  .blog-grid,
  .step-grid,
  .broker-grid,
  .form-grid.two,
  .heatmap-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-globe,
  .panel-body,
  .signal-card,
  .pricing-card,
  .step-card,
  .blog-card,
  .broker-card {
    padding: 1.2rem;
  }

  .chart-viewport {
    min-height: 300px;
  }

  .mobile-only {
    display: inline-flex;
  }

  .admin-room-panel {
    grid-template-columns: 1fr;
  }

  .admin-room-orbit {
    min-height: 14rem;
  }

  .reset-meta-grid {
    grid-template-columns: 1fr;
  }
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.auth-showcase,
.auth-card {
  padding: 2rem;
}

.auth-card {
  overflow: hidden;
}

.auth-showcase {
  background:
    radial-gradient(circle at 18% 18%, rgba(96, 165, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 76%, rgba(69, 255, 188, 0.12), transparent 22%),
    linear-gradient(145deg, rgba(10, 18, 34, 0.92), rgba(8, 15, 28, 0.78));
}

.auth-showcase .headline-gradient {
  max-width: 11ch;
}

.auth-portal-shell {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 0.75rem 0;
}

.auth-portal-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 30rem);
  padding: 1.45rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(22, 24, 38, 0.96), rgba(10, 13, 24, 0.94)),
    rgba(6, 9, 18, 0.92);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.44), 0 0 40px rgba(69, 255, 188, 0.08);
}

.member-auth-frame,
.admin-auth-frame {
  overflow: hidden;
}

.auth-frame-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.auth-frame-orbit-a {
  top: -2rem;
  right: -1.75rem;
  width: 7rem;
  height: 7rem;
  border-color: rgba(255, 95, 147, 0.34);
  animation: authPulseRing 5s linear infinite;
}

.auth-frame-orbit-b {
  bottom: -1.1rem;
  left: -1.2rem;
  width: 5.25rem;
  height: 5.25rem;
  border-color: rgba(100, 228, 255, 0.34);
  animation: authPulseRing 4s linear infinite reverse;
}

.auth-portal-glow {
  position: absolute;
  width: 13rem;
  height: 13rem;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.34;
  pointer-events: none;
}

.auth-portal-glow-a {
  top: -1rem;
  left: -1rem;
  background: rgba(255, 90, 141, 0.22);
}

.auth-portal-glow-b {
  right: -1rem;
  bottom: 0;
  background: rgba(100, 228, 255, 0.22);
}

.auth-portal-ring {
  position: absolute;
  inset: 12% 18%;
  border-radius: 32px;
  border: 1px solid rgba(96, 165, 255, 0.18);
  animation: authPulseRing 6s linear infinite;
}

.auth-portal-ring.alt {
  inset: 6% 12%;
  border-color: rgba(255, 95, 147, 0.2);
  animation-duration: 8s;
  animation-direction: reverse;
}

.auth-portal-core {
  position: absolute;
  top: 1rem;
  width: 12rem;
  height: 12rem;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.auth-portal-light {
  position: absolute;
  width: 3.5rem;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(100, 228, 255, 0), rgba(100, 228, 255, 1), rgba(100, 228, 255, 0));
  top: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(100, 228, 255, 0.6);
  animation: authLightSweep 4.8s linear infinite;
}

.auth-portal-light.second {
  top: auto;
  bottom: 0.2rem;
  background: linear-gradient(90deg, rgba(255, 95, 147, 0), rgba(255, 95, 147, 1), rgba(255, 95, 147, 0));
  box-shadow: 0 0 24px rgba(255, 95, 147, 0.5);
  animation-delay: -2.4s;
}

.auth-tabs-portal {
  justify-content: center;
  margin-bottom: 1.4rem;
}

.auth-inline-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
}

.auth-alt-line {
  margin-top: 0.95rem;
  text-align: center;
  color: #91a7c2;
  font-size: 0.92rem;
}

.auth-inline-link {
  border: 0;
  background: transparent;
  color: #d8e8fb;
  cursor: pointer;
  padding: 0;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.auth-inline-link:hover {
  color: #8fffe0;
}

.auth-inline-link.accent {
  color: #ff85b5;
}

.auth-orbit {
  position: relative;
  height: 320px;
  display: grid;
  place-items: center;
  margin-top: 1.5rem;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(96, 165, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border: 1px solid rgba(96, 165, 255, 0.1);
}

.auth-orb-core {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), transparent 22%),
    linear-gradient(135deg, rgba(69, 255, 188, 0.9), rgba(96, 165, 255, 0.72), rgba(174, 124, 255, 0.72));
  box-shadow: 0 0 60px rgba(96, 165, 255, 0.32), inset 0 -18px 24px rgba(0, 0, 0, 0.22);
  animation: pulseOrb 5.2s ease-in-out infinite;
}

.auth-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 255, 0.25);
}

.ring-a {
  width: 16rem;
  height: 16rem;
  animation: spinGlobe 16s linear infinite;
}

.ring-b {
  width: 21rem;
  height: 12rem;
  transform: rotate(24deg);
  border-color: rgba(69, 255, 188, 0.22);
  animation: authTilt 12s ease-in-out infinite;
}

.auth-satellite {
  position: absolute;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(5, 17, 32, 0.86);
  border: 1px solid rgba(96, 165, 255, 0.24);
  color: #f2f8ff;
  box-shadow: 0 0 24px rgba(96, 165, 255, 0.12);
}

.auth-luxury-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.auth-luxury-strip span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.18);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.08), rgba(96, 165, 255, 0.06));
  color: #f2f8ff;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
}

.sat-a {
  top: 10%;
  left: 15%;
}

.sat-b {
  right: 8%;
  top: 42%;
}

.sat-c {
  left: 20%;
  bottom: 10%;
}

.admin-mesh {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.mesh-node {
  min-height: 120px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  color: #e8f4ff;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 28px rgba(96, 165, 255, 0.12);
}

.auth-tabs {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.auth-message {
  min-height: 1.5rem;
  color: #d6e8fa;
}

.auth-message.error {
  color: #ff9ab3;
}

.auth-message.success {
  color: #89ffd9;
}

.password-checklist {
  display: none;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(96, 165, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #a9bdd7;
  font-size: 0.9rem;
}

.password-checklist.visible {
  display: grid;
}

.password-checklist.compact {
  margin-top: -0.25rem;
}

.password-checklist [data-password-rule]::before {
  content: "•";
  margin-right: 0.5rem;
  color: #7187a1;
}

.password-checklist [data-password-rule].passed {
  color: #89ffd9;
}

.password-checklist [data-password-rule].passed::before {
  content: "✓";
  color: #45ffbc;
}

.auth-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 255, 0.28), transparent);
}

.modal-card {
  max-height: min(88vh, 920px);
  overflow-y: auto;
}

.modal-card::-webkit-scrollbar {
  width: 10px;
}

.modal-card::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(96, 165, 255, 0.25);
}

.usdt-payment-box {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.admin-toggle {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
}

.admin-toggle input {
  width: auto;
}

.admin-signal-list {
  display: grid;
  gap: 1rem;
}

.admin-signal-editor {
  padding: 1.4rem;
}

.admin-table {
  display: grid;
  gap: 0.8rem;
}

.admin-row {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.admin-row strong {
  color: var(--text);
}

.admin-row code {
  font-size: 0.85rem;
  color: #9fd9ff;
  word-break: break-all;
}

.admin-workspace {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.2rem;
}

.admin-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
  background:
    radial-gradient(circle at top, rgba(69, 255, 188, 0.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 95, 147, 0.08), transparent 25%),
    linear-gradient(180deg, rgba(10, 17, 30, 0.96), rgba(5, 12, 24, 0.9));
  min-height: calc(100vh - 8rem);
}

.admin-sidebar-nav {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.admin-side-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  margin-bottom: 0.45rem;
  padding: 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.08), rgba(96, 165, 255, 0.07));
}

.admin-side-profile strong {
  display: block;
  font-size: 0.98rem;
  color: #f4f9ff;
}

.admin-side-profile p {
  color: #91a7c2;
  font-size: 0.82rem;
}

.admin-side-avatar {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #08141f;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd166, #60a5ff, #45ffbc);
  box-shadow: 0 0 30px rgba(255, 209, 102, 0.22);
}

.admin-sidebar-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(96, 165, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #d9e9fb;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-sidebar-link span {
  display: block;
  font-weight: 700;
}

.admin-sidebar-icon {
  width: 2rem;
  height: 2rem;
  grid-row: span 2;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 209, 102, 0.18);
  background: rgba(7, 13, 24, 0.74);
  color: #ffd166;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.admin-sidebar-link small {
  grid-column: 2;
  display: block;
  margin-top: 0.24rem;
  color: #91a7c2;
  font-size: 0.82rem;
}

.admin-sidebar-link:hover,
.admin-sidebar-link.active {
  transform: translateY(-2px);
  border-color: rgba(69, 255, 188, 0.3);
  box-shadow: 0 0 24px rgba(69, 255, 188, 0.1);
  background: linear-gradient(135deg, rgba(69, 255, 188, 0.14), rgba(96, 165, 255, 0.08));
}

.admin-overview-link {
  width: 100%;
  text-align: left;
}

.admin-row .hero-actions {
  margin-top: 0.8rem;
}

.admin-content-stack {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
  animation: adminPanelReveal 0.35s ease;
}

.admin-command-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.14), transparent 22%),
    radial-gradient(circle at bottom right, rgba(69, 255, 188, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(8, 15, 29, 0.98), rgba(11, 21, 39, 0.88));
}

.admin-command-badges {
  display: grid;
  gap: 0.75rem;
  min-width: 15rem;
}

.admin-command-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #f8fbff;
}

.session-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(69, 255, 188, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #e8f4ff;
}

.site-banner {
  margin-bottom: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(69, 255, 188, 0.18);
  background: linear-gradient(135deg, rgba(69, 255, 188, 0.12), rgba(96, 165, 255, 0.08));
  color: #e9f7ff;
}

.footer-contact {
  color: #d9ebff;
}

.whatsapp-float,
.ai-float-badge {
  position: fixed;
  right: 1.2rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(69, 255, 188, 0.24);
  background: rgba(5, 17, 32, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.whatsapp-float {
  bottom: 1.2rem;
}

.ai-float-badge {
  bottom: 5rem;
}

.support-float {
  position: fixed !important;
  right: 1.2rem !important;
  left: auto !important;
  bottom: 8.9rem !important;
  top: auto !important;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 255, 0.22);
  background: rgba(7, 15, 29, 0.92);
  color: var(--text);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.support-float-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(69, 255, 188, 0.95), rgba(96, 165, 255, 0.8));
  box-shadow: 0 0 14px rgba(69, 255, 188, 0.45);
}

.support-chat-panel {
  position: fixed !important;
  right: 1.2rem !important;
  left: auto !important;
  bottom: 6.4rem !important;
  top: auto !important;
  z-index: 95;
  width: min(24rem, calc(100vw - 2rem));
  height: min(34rem, calc(100vh - 8rem));
  max-height: min(34rem, calc(100vh - 8rem));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(96, 165, 255, 0.18);
  background: rgba(6, 12, 24, 0.96);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.support-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(6, 12, 24, 0.98);
  padding-bottom: 0.4rem;
}

.support-chat-head small {
  display: block;
  color: #90a8c3;
}

.support-chat-head .btn-secondary {
  flex-shrink: 0;
}

.support-chat-messages {
  min-height: 10rem;
  max-height: none;
  overflow-y: auto;
  display: grid;
  gap: 0.7rem;
  padding-right: 0.25rem;
}

.paypal-checkout-shell {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.paypal-brand-card {
  border-radius: 24px;
  border: 1px solid rgba(96, 165, 255, 0.16);
  background: linear-gradient(180deg, rgba(26, 34, 48, 0.96), rgba(20, 27, 38, 0.94));
  padding: 1rem;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 48px rgba(0, 0, 0, 0.28);
}

.paypal-brand-top {
  min-height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, #ffd15a 0%, #ffc53d 100%);
  color: #0055b8;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.paypal-button-host {
  min-height: 8.5rem;
  padding: 0.9rem;
  border-radius: 0;
  background: rgba(7, 15, 29, 0.72);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.paypal-paylater-host {
  min-height: 6rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.paypal-paylater-trigger {
  background: linear-gradient(180deg, #ffd15a 0%, #ffc53d 100%);
  color: #0a2249;
  border-color: rgba(255, 209, 102, 0.35);
  font-size: 1rem;
}

.paypal-paylater-trigger:hover {
  background: linear-gradient(180deg, #ffd86f 0%, #ffcb4d 100%);
}

.paypal-card-button-host {
  min-height: 4.5rem;
}

.paypal-button-host.paypal-host-hidden {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.paypal-fallback-wrap {
  padding: 1rem;
  background: rgba(7, 15, 29, 0.72);
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.paypal-fallback-link {
  min-height: 3.5rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 8px;
  background: #2b2b2b;
  color: #f5f7fb;
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.paypal-fallback-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.24);
  background: #343434;
}

.paypal-card-trigger {
  cursor: pointer;
}

.paypal-card-fields-wrap {
  padding: 1rem;
  background: rgba(7, 15, 29, 0.78);
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: grid;
  gap: 1rem;
}

.paypal-card-grid {
  display: grid;
  gap: 0.9rem;
}

.paypal-card-field {
  display: grid;
  gap: 0.45rem;
}

.paypal-card-field label {
  color: #dbe8f6;
  font-size: 0.92rem;
  font-weight: 600;
}

.paypal-card-host {
  min-height: 3.35rem;
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 255, 0.18);
  background: rgba(255,255,255,0.04);
  padding: 0.9rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.paypal-card-host iframe {
  min-height: 1.4rem !important;
}

.paypal-card-submit {
  min-height: 3.6rem;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 255, 0.18);
  background: linear-gradient(135deg, rgba(69, 255, 188, 0.18), rgba(96, 165, 255, 0.16));
  color: #f4fbff;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.paypal-card-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.24);
}

.paypal-card-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.paypal-card-icon {
  width: 2rem;
  height: 1.35rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.8);
  position: relative;
}

.paypal-card-icon::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  top: 0.35rem;
  height: 2px;
  background: rgba(255,255,255,0.8);
}

.paypal-brand-bottom {
  min-height: 2.2rem;
  display: grid;
  place-items: center;
  background: #f1f1f1;
  color: #0055b8;
  border-radius: 0 0 12px 12px;
  font-size: 0.95rem;
  font-weight: 700;
}

.support-chat-empty {
  color: #93a7c1;
  font-size: 0.92rem;
}

.support-bubble {
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.support-bubble.admin {
  border-color: rgba(69, 255, 188, 0.18);
  background: rgba(69, 255, 188, 0.08);
}

.support-bubble strong,
.support-bubble p,
.support-bubble small {
  display: block;
}

.support-bubble p {
  margin-top: 0.35rem;
  color: #d7e5f3;
}

.support-bubble small {
  margin-top: 0.45rem;
  color: #8fa5bf;
}

.support-chat-form {
  display: grid;
  gap: 0.8rem;
}

.support-bubble-topic {
  display: inline-flex;
  margin: 0.15rem 0 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #d9eaff;
  font-size: 0.78rem;
}

.support-bubble-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.support-bubble-delete {
  border: 0;
  background: transparent;
  color: #ff97b5;
  cursor: pointer;
  font-size: 0.82rem;
}

.support-chat-form textarea {
  width: 100%;
  min-height: 6rem;
  resize: vertical;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(96, 165, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.whatsapp-icon,
.ai-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(69, 255, 188, 0.95), rgba(96, 165, 255, 0.8));
  color: #04111f;
  font-weight: 800;
}

.widget-icon-shell {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
}

.widget-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-submit-button {
  overflow: hidden;
  min-height: 4.1rem;
  border-radius: 22px;
}

.order-submit-drone {
  position: relative;
  width: 2rem;
  height: 1.3rem;
  display: inline-grid;
  place-items: center;
}

.order-submit-wing {
  position: absolute;
  top: 0.2rem;
  width: 0.8rem;
  height: 0.18rem;
  border-radius: 999px;
  background: #ffd166;
  box-shadow: 0 0 12px rgba(255, 209, 102, 0.45);
}

.order-submit-wing.left {
  left: 0;
  transform-origin: right center;
  animation: droneWingLeft 1.1s ease-in-out infinite;
}

.order-submit-wing.right {
  right: 0;
  transform-origin: left center;
  animation: droneWingRight 1.1s ease-in-out infinite;
}

.order-submit-core {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #45ffbc, #60a5ff);
  box-shadow: 0 0 18px rgba(69, 255, 188, 0.45);
}

.order-submit-button.processing .order-submit-text::after {
  content: " ...";
}

.order-submit-button.processing {
  border-color: rgba(100, 228, 255, 0.4);
  background: linear-gradient(135deg, rgba(100, 228, 255, 0.24), rgba(69, 255, 188, 0.18));
}

.order-submit-button.success-state {
  border-color: rgba(69, 255, 188, 0.55);
  background: linear-gradient(135deg, rgba(69, 255, 188, 0.28), rgba(96, 165, 255, 0.18));
}

.order-console-preview {
  display: grid;
  place-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(96, 165, 255, 0.14);
  background:
    radial-gradient(circle at top, rgba(100, 228, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(6, 15, 29, 0.88), rgba(10, 19, 33, 0.82));
}

.order-console-drone {
  position: relative;
  width: 4.5rem;
  height: 2.5rem;
}

.order-console-core,
.order-console-wing {
  position: absolute;
  display: block;
}

.order-console-core {
  top: 0.8rem;
  left: 1.65rem;
  width: 1.2rem;
  height: 0.9rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #ffd166, #3dc1da);
  box-shadow: 0 0 24px rgba(61, 193, 218, 0.34);
}

.order-console-wing {
  top: 0.15rem;
  width: 1.55rem;
  height: 0.26rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 209, 102, 0.95), rgba(61, 193, 218, 0.95));
  transform-origin: center;
}

.order-console-wing.left {
  left: 0;
  animation: droneWingLeft 0.85s linear infinite;
}

.order-console-wing.right {
  right: 0;
  animation: droneWingRight 0.85s linear infinite;
}

.order-console-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.order-console-stage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 255, 0.16);
  color: #9db3cc;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-console-stage.active {
  color: #06131f;
  background: linear-gradient(135deg, #5ef0d0, #69c1ff);
  border-color: transparent;
}

.admin-auth-shell .auth-portal-frame {
  width: min(100%, 31rem);
  background:
    radial-gradient(circle at top left, rgba(255, 95, 147, 0.16), transparent 20%),
    radial-gradient(circle at bottom right, rgba(255, 209, 102, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(12, 17, 29, 0.96), rgba(10, 18, 30, 0.92));
}

.ai-dot {
  width: 0.8rem;
  height: 0.8rem;
  box-shadow: 0 0 18px rgba(69, 255, 188, 0.8);
}

.cursor-glow {
  position: fixed;
  top: -18px;
  left: -18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 90;
  background: radial-gradient(circle, rgba(69, 255, 188, 0.55), rgba(96, 165, 255, 0.12), transparent 70%);
  mix-blend-mode: screen;
  transition: transform 0.08s linear;
}

.admin-row select {
  min-height: 42px;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(96, 165, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.reset-approval-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(7, 15, 29, 0.92);
  border: 1px solid rgba(96, 165, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.reset-approval-card.pending {
  border-color: rgba(255, 209, 102, 0.24);
}

.reset-approval-card.approved {
  border-color: rgba(69, 255, 188, 0.24);
}

.reset-approval-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reset-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reset-status-pill.pending {
  color: #ffe29e;
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.24);
}

.reset-status-pill.approved {
  color: #8ff8d5;
  background: rgba(69, 255, 188, 0.12);
  border: 1px solid rgba(69, 255, 188, 0.24);
}

.reset-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.reset-meta-grid div {
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.reset-meta-grid small {
  display: block;
  color: #8ea6c4;
  margin-bottom: 0.25rem;
}

.reset-meta-grid span {
  color: #eef8ff;
  font-size: 0.92rem;
}

.reset-agent-note {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(69, 255, 188, 0.05);
  border: 1px solid rgba(69, 255, 188, 0.1);
  color: #cfe6fb;
  font-size: 0.9rem;
}

@keyframes pulseOrb {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes authTilt {
  0%,
  100% {
    transform: rotate(24deg) scale(1);
  }
  50% {
    transform: rotate(34deg) scale(1.04);
  }
}

@keyframes authLightSweep {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateX(-50%) translateY(1px) scaleX(1.45);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.45;
  }
}

@keyframes authPulseRing {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes adminPanelReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes droneWingLeft {
  0%, 100% { transform: rotate(0deg) scaleX(1); }
  50% { transform: rotate(-24deg) scaleX(1.08); }
}

@keyframes droneWingRight {
  0%, 100% { transform: rotate(0deg) scaleX(1); }
  50% { transform: rotate(24deg) scaleX(1.08); }
}

@media (max-width: 900px) {
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-plan-grid {
    grid-template-columns: 1fr;
  }

  .auth-inline-links {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .admin-command-badges {
    min-width: 100%;
  }

  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .support-float {
    right: 0.85rem !important;
    bottom: 5.8rem !important;
  }

  .support-chat-panel {
    right: 0.85rem !important;
    left: 0.85rem !important;
    width: auto;
    bottom: 5.2rem !important;
    top: auto !important;
    height: min(31rem, calc(100vh - 6.6rem));
    max-height: min(31rem, calc(100vh - 6.6rem));
  }
}
