@font-face {
  font-family: "SF Pro Display";
  src:
    local("SF Pro Display"),
    local("SF Pro Text"),
    local("San Francisco"),
    local(".SFNSText"),
    local(".SFNSDisplay");
  font-display: swap;
}

:root {
  --font-sans: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
  --text-dark: #0b1326;
  --text-light: #edf2ff;
  --muted-dark: rgba(11, 19, 38, 0.68);
  --muted-light: rgba(237, 242, 255, 0.72);
  --surface-light: rgba(255, 255, 255, 0.68);
  --surface-dark: rgba(14, 20, 38, 0.62);
  --border-light: rgba(255, 255, 255, 0.68);
  --border-dark: rgba(170, 191, 245, 0.18);
  --shadow-light: 0 30px 70px rgba(42, 60, 105, 0.12);
  --shadow-dark: 0 38px 80px rgba(0, 0, 0, 0.44);
  --blue: #4b7cff;
  --purple: #8b65ff;
  --cyan: #4bd1ff;
  --violet: #af7eff;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
  --ease: 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
  pointer-events: none;
  z-index: -2;
}

body::before {
  top: -10rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(124, 159, 255, 0.55), transparent 72%);
}

body::after {
  bottom: -14rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(165, 117, 255, 0.45), transparent 72%);
}

.theme-light {
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(120, 151, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f9fd 0%, #eef3fb 52%, #ffffff 100%);
}

.theme-dark {
  color: var(--text-light);
  background:
    radial-gradient(circle at top left, rgba(74, 126, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #08101d 0%, #0c1526 42%, #101a30 100%);
}

.theme-dark::before {
  background: radial-gradient(circle, rgba(78, 122, 255, 0.32), transparent 74%);
}

.theme-dark::after {
  background: radial-gradient(circle, rgba(139, 101, 255, 0.24), transparent 74%);
}

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

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

button,
a,
.tilt-card {
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    background-color var(--ease),
    color var(--ease),
    opacity var(--ease);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 2.5rem 0 5.5rem;
}

.glass-panel {
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-light), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.theme-dark .glass-panel {
  background: var(--surface-dark);
  border-color: var(--border-dark);
  box-shadow: var(--shadow-dark), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.gradient-panel {
  position: relative;
  overflow: hidden;
}

.gradient-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.card-blue {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(225, 236, 255, 0.9)),
    linear-gradient(140deg, rgba(77, 124, 255, 0.18), transparent 70%);
}

.card-purple {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(239, 230, 255, 0.9)),
    linear-gradient(140deg, rgba(139, 101, 255, 0.18), transparent 70%);
}

.card-cyan {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(228, 246, 255, 0.9)),
    linear-gradient(140deg, rgba(75, 209, 255, 0.18), transparent 70%);
}

.card-violet {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(244, 237, 255, 0.9)),
    linear-gradient(140deg, rgba(175, 126, 255, 0.18), transparent 70%);
}

.theme-dark .card-blue {
  background:
    linear-gradient(160deg, rgba(18, 29, 55, 0.95), rgba(12, 23, 46, 0.92)),
    linear-gradient(140deg, rgba(77, 124, 255, 0.28), transparent 72%);
}

.theme-dark .card-purple {
  background:
    linear-gradient(160deg, rgba(20, 25, 52, 0.96), rgba(16, 20, 42, 0.92)),
    linear-gradient(140deg, rgba(139, 101, 255, 0.28), transparent 72%);
}

.theme-dark .card-cyan {
  background:
    linear-gradient(160deg, rgba(14, 28, 45, 0.96), rgba(10, 22, 38, 0.92)),
    linear-gradient(140deg, rgba(75, 209, 255, 0.24), transparent 72%);
}

.theme-dark .card-violet {
  background:
    linear-gradient(160deg, rgba(21, 24, 50, 0.96), rgba(14, 18, 42, 0.92)),
    linear-gradient(140deg, rgba(175, 126, 255, 0.26), transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.site-header.is-scrolled .nav-shell {
  transform: translateY(0.2rem);
}

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

.brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.brand-mark {
  width: 1.3rem;
  height: 1.3rem;
  display: inline-block;
  border-radius: 0.45rem;
  transform: rotate(12deg);
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 70%, #c2f4ff 100%);
  box-shadow: 0 12px 28px rgba(90, 115, 255, 0.38);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a,
.text-link {
  font-size: 0.95rem;
  opacity: 0.78;
}

.nav-links a:hover,
.text-link:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #4c7dff 0%, #7a78ff 56%, #64d6ff 100%);
  box-shadow: 0 18px 36px rgba(90, 118, 255, 0.34);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(90, 118, 255, 0.44);
}

.btn-secondary {
  border: 1px solid rgba(130, 149, 193, 0.28);
  background: rgba(255, 255, 255, 0.5);
}

.theme-dark .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(193, 208, 255, 0.14);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 119, 230, 0.32);
}

.btn-glow {
  position: relative;
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: auto 10% -0.85rem 10%;
  height: 1rem;
  border-radius: 999px;
  background: rgba(104, 125, 255, 0.46);
  filter: blur(18px);
  z-index: -1;
}

.hero {
  padding: 5.2rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 3rem;
  align-items: center;
}

.seller-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--blue);
  background: rgba(87, 122, 255, 0.1);
}

.theme-dark .eyebrow {
  color: #b8c8ff;
  background: rgba(99, 129, 255, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-text,
.section-heading p,
.seller-copy p,
.dashboard-copy p,
.testimonial-card p,
.comparison-card p,
.product-body p,
.feature-card p,
.category-card p,
.role-card p,
.site-footer p,
.seller-panel p {
  margin: 1.2rem 0 0;
  font-size: 1.04rem;
  color: var(--muted-dark);
}

.theme-dark .hero-text,
.theme-dark .section-heading p,
.theme-dark .seller-copy p,
.theme-dark .dashboard-copy p,
.theme-dark .testimonial-card p,
.theme-dark .comparison-card p,
.theme-dark .product-body p,
.theme-dark .feature-card p,
.theme-dark .category-card p,
.theme-dark .role-card p,
.theme-dark .site-footer p,
.theme-dark .seller-panel p {
  color: var(--muted-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.stat-card {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted-dark);
}

.theme-dark .stat-card span {
  color: var(--muted-light);
}

.hero-scene,
.seller-scene {
  position: relative;
  min-height: 540px;
  perspective: 1600px;
}

.showcase-shell,
.dashboard-card,
.upload-card,
.seller-mini-dashboard {
  border-radius: 34px;
}

.showcase-shell {
  position: relative;
  min-height: 540px;
  padding: 1.25rem;
  transform: rotateY(-12deg) rotateX(8deg);
}

.scene-topbar {
  display: flex;
  gap: 0.45rem;
}

.scene-topbar span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(146, 160, 196, 0.4);
}

.scene-content {
  position: relative;
  min-height: 460px;
  margin-top: 1rem;
}

.primary-card {
  position: absolute;
  inset: 2rem 3.5rem auto 1.8rem;
  padding: 1.5rem;
  border-radius: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, #263f92 0%, #5b71ff 48%, #8c68ff 100%);
  box-shadow: 0 30px 60px rgba(70, 92, 210, 0.34);
}

.scene-tag,
.pill,
.role-pill,
.trend-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.scene-tag {
  background: rgba(255, 255, 255, 0.18);
}

.scene-title p {
  max-width: 20rem;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
}

.scene-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  font-weight: 600;
}

.mini-widget,
.stack-card,
.dashboard-stat,
.showcase-kpi,
.showcase-chart,
.showcase-uploader,
.comparison-card,
.role-card,
.product-card,
.testimonial-card,
.category-card,
.feature-card,
.seller-panel,
.trust-shell {
  border-radius: var(--radius-xl);
}

.mini-widget {
  position: absolute;
  padding: 1rem 1.1rem;
}

.mini-widget strong,
.widget-rating {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.widget-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.theme-dark .widget-label {
  color: rgba(216, 226, 255, 0.65);
}

.mini-widget-sales {
  top: 1rem;
  right: 1.2rem;
  width: 12.5rem;
}

.sparkline {
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 4rem;
  margin-top: 0.9rem;
}

.sparkline span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(76, 125, 255, 0.95), rgba(140, 102, 255, 0.45));
}

.sparkline span:nth-child(1) {
  height: 30%;
}

.sparkline span:nth-child(2) {
  height: 40%;
}

.sparkline span:nth-child(3) {
  height: 45%;
}

.sparkline span:nth-child(4) {
  height: 62%;
}

.sparkline span:nth-child(5) {
  height: 80%;
}

.sparkline span:nth-child(6) {
  height: 72%;
}

.mini-widget-reco {
  right: 2.5rem;
  bottom: 8rem;
  max-width: 14rem;
}

.mini-widget-review {
  left: 2rem;
  bottom: 2.25rem;
  width: 13rem;
}

.widget-rating {
  font-size: 1.75rem;
  color: var(--blue);
}

.mini-card-stack {
  position: absolute;
  top: 18.5rem;
  left: 2.8rem;
  display: grid;
  gap: 1rem;
  width: 16rem;
}

.stack-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
}

.stack-card strong,
.stack-card span {
  display: block;
}

.stack-card span {
  margin-top: 0.2rem;
  font-size: 0.84rem;
  color: var(--muted-dark);
}

.theme-dark .stack-card span {
  color: var(--muted-light);
}

.thumb-chip {
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  border-radius: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.thumb-chip.blue {
  background: linear-gradient(135deg, #4b7cff 0%, #84e5ff 100%);
}

.thumb-chip.purple {
  background: linear-gradient(135deg, #785eff 0%, #d5a7ff 100%);
}

.trust-band {
  padding: 0 0 2rem;
}

.trust-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 1.8rem;
}

.trust-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.trust-shell strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 1.5rem;
  font-weight: 700;
  color: rgba(11, 19, 38, 0.6);
}

.theme-dark .trust-logos {
  color: rgba(237, 242, 255, 0.6);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.3rem;
}

.feature-grid,
.feature-grid-horizontal,
.category-grid,
.product-grid,
.testimonial-grid,
.role-grid,
.comparison-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

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

.feature-card,
.category-card,
.product-card,
.testimonial-card,
.role-card,
.comparison-card {
  padding: 1.45rem;
}

.feature-card,
.category-card,
.product-card,
.role-card,
.comparison-card {
  border: 1px solid rgba(153, 169, 204, 0.18);
}

.theme-dark .feature-card,
.theme-dark .category-card,
.theme-dark .product-card,
.theme-dark .role-card,
.theme-dark .comparison-card {
  border-color: rgba(170, 191, 245, 0.12);
}

.feature-card:hover,
.category-card:hover,
.product-card:hover,
.role-card:hover,
.comparison-card:hover,
.testimonial-card:hover,
.seller-panel:hover,
.dashboard-card:hover,
.upload-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 34px 80px rgba(48, 66, 122, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.theme-dark .feature-card:hover,
.theme-dark .category-card:hover,
.theme-dark .product-card:hover,
.theme-dark .role-card:hover,
.theme-dark .comparison-card:hover,
.theme-dark .testimonial-card:hover,
.theme-dark .seller-panel:hover,
.theme-dark .dashboard-card:hover,
.theme-dark .upload-card:hover {
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.icon-badge {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 1rem;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.theme-dark .icon-badge {
  background: rgba(255, 255, 255, 0.06);
  color: #c7d5ff;
}

.icon-badge svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card {
  overflow: hidden;
}

.product-thumb {
  position: relative;
  min-height: 13rem;
  border-radius: 22px;
  padding: 1rem;
  overflow: hidden;
}

.product-thumb::before,
.product-thumb::after {
  content: "";
  position: absolute;
  border-radius: 28px;
  filter: blur(2px);
  opacity: 0.9;
}

.product-thumb::before {
  inset: 1.5rem auto auto 1.6rem;
  width: 8rem;
  height: 8rem;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(18deg);
}

.product-thumb::after {
  inset: auto 1.2rem 1rem auto;
  width: 5.6rem;
  height: 5.6rem;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(-16deg);
}

.pill,
.role-pill,
.trend-pill {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.product-body {
  padding-top: 1.2rem;
}

.product-topline,
.product-meta,
.dashboard-top,
.upload-head,
.mini-dashboard-top,
.mini-dashboard-bottom,
.avatar-row,
.showcase-top,
.uploader-tags,
.dashboard-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-topline strong,
.mini-dashboard-top strong,
.dashboard-top strong {
  font-size: 1.2rem;
  letter-spacing: -0.05em;
}

.product-meta {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted-dark);
}

.theme-dark .product-meta {
  color: var(--muted-light);
}

.thumb-sapphire {
  background: linear-gradient(145deg, #0b163d 0%, #2045b5 46%, #61d7ff 100%);
}

.thumb-violet {
  background: linear-gradient(145deg, #28125b 0%, #5a2cc3 48%, #c78bff 100%);
}

.thumb-cobalt {
  background: linear-gradient(145deg, #071d2d 0%, #0f6fa3 48%, #65d7ff 100%);
}

.thumb-aurora {
  background: linear-gradient(145deg, #27184f 0%, #6f56db 52%, #ff9ff2 100%);
}

.thumb-midnight {
  background: linear-gradient(145deg, #091321 0%, #1d376b 48%, #7f9dff 100%);
}

.thumb-lilac {
  background: linear-gradient(145deg, #1a1748 0%, #533ac8 46%, #7fd7ff 100%);
}

.seller-teaser {
  padding-top: 0.4rem;
}

.seller-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 2rem;
  padding: 1.7rem;
}

.seller-mini-dashboard {
  position: relative;
  min-height: 18rem;
  padding: 1rem;
  background:
    linear-gradient(160deg, rgba(17, 28, 56, 0.98), rgba(34, 40, 88, 0.92)),
    linear-gradient(140deg, rgba(75, 209, 255, 0.12), transparent 70%);
  box-shadow: 0 28px 60px rgba(21, 32, 84, 0.26);
}

.mini-dashboard-frame {
  height: 100%;
  padding: 1.2rem;
  border-radius: 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 0.55rem;
  height: 7rem;
  margin: 1.6rem 0;
}

.mini-bars span,
.bar-chart span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #79a4ff 0%, #816bff 65%, rgba(129, 107, 255, 0.24) 100%);
  box-shadow: 0 12px 24px rgba(126, 114, 255, 0.24);
}

.mini-dashboard-bottom {
  align-items: end;
}

.mini-dashboard-bottom div strong,
.mini-dashboard-bottom div span {
  display: block;
}

.mini-dashboard-bottom div span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.seller-hero {
  padding-top: 5.4rem;
}

.dashboard-card {
  position: relative;
  min-height: 26rem;
  padding: 1.3rem;
  transform: rotateY(10deg) rotateX(7deg);
}

.upload-card {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  width: 15rem;
  padding: 1.1rem;
}

.dashboard-top strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 2rem;
}

.trend-pill {
  background: linear-gradient(135deg, rgba(79, 122, 255, 0.86), rgba(136, 101, 255, 0.82));
}

.chart-panel,
.showcase-chart {
  position: relative;
  min-height: 15rem;
  margin-top: 1.35rem;
  border-radius: 24px;
  overflow: hidden;
}

.chart-grid-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 14.28% 100%;
}

.chart-line {
  position: absolute;
  inset: 0;
}

.chart-line::before {
  content: "";
  position: absolute;
  inset: auto 7% 18% 5%;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #4bd1ff 0%, #7f9eff 40%, #b57eff 100%);
  transform: skewY(-10deg) translateY(-4.7rem);
  transform-origin: left center;
  box-shadow: 0 0 24px rgba(104, 119, 255, 0.36);
}

.chart-line span {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #e3eaff;
  box-shadow: 0 0 0 6px rgba(119, 136, 255, 0.18), 0 0 18px rgba(90, 124, 255, 0.48);
}

.dashboard-stats {
  margin-top: 1.2rem;
}

.dashboard-stat {
  flex: 1;
  padding: 1rem;
}

.dashboard-stat strong,
.showcase-kpi strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -0.05em;
}

.dashboard-stat span,
.showcase-kpi span,
.sidebar-brand,
.showcase-sidebar span,
.upload-card small,
.upload-list li,
.uploader-dropzone small {
  color: var(--muted-light);
}

.upload-progress {
  margin-top: 1rem;
}

.progress-bar {
  height: 0.6rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4bd1ff 0%, #6a8fff 50%, #8b65ff 100%);
}

.upload-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.upload-list li + li {
  margin-top: 0.55rem;
}

.floating-badge {
  position: absolute;
  left: 2rem;
  bottom: -0.2rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
}

.dashboard-layout {
  display: grid;
  gap: 2rem;
}

.dashboard-showcase {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.2rem;
}

.showcase-sidebar {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.showcase-main {
  display: grid;
  gap: 1rem;
}

.showcase-top {
  align-items: stretch;
}

.showcase-kpi {
  flex: 1;
  padding: 1rem;
}

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

.showcase-chart,
.showcase-uploader {
  padding: 1rem;
}

.bar-chart {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  height: 72%;
  display: flex;
  align-items: end;
  gap: 0.7rem;
}

.uploader-dropzone {
  display: grid;
  place-items: center;
  min-height: 10rem;
  margin-top: 1rem;
  text-align: center;
  border-radius: 24px;
  border: 1px dashed rgba(195, 209, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.uploader-dropzone span {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
}

.uploader-tags {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 1rem;
}

.uploader-tags span {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
}

.role-pill {
  color: var(--blue);
  background: rgba(86, 117, 255, 0.12);
}

.theme-dark .role-pill {
  color: #d8e2ff;
  background: rgba(96, 127, 255, 0.14);
}

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

.avatar-row {
  justify-content: flex-start;
}

.avatar-row strong,
.avatar-row span {
  display: block;
}

.avatar-row span {
  margin-top: 0.15rem;
  color: var(--muted-dark);
}

.theme-dark .avatar-row span {
  color: var(--muted-light);
}

.avatar {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 700;
  color: #ffffff;
}

.avatar-blue {
  background: linear-gradient(135deg, #4b7cff 0%, #4bd1ff 100%);
}

.avatar-purple {
  background: linear-gradient(135deg, #8b65ff 0%, #d584ff 100%);
}

.avatar-cyan {
  background: linear-gradient(135deg, #2d8cff 0%, #75f0ff 100%);
}

.site-footer {
  position: relative;
  margin-top: 2rem;
  padding: 3rem 0;
  color: rgba(240, 244, 255, 0.86);
  background: linear-gradient(145deg, #07111e 0%, #0c1730 50%, #1a1745 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(92, 115, 255, 0.2), transparent 28%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 1.5rem;
  align-items: start;
}

.footer-grid > div {
  display: grid;
  gap: 0.85rem;
}

.footer-grid h3 {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.footer-grid a {
  color: rgba(240, 244, 255, 0.72);
}

.footer-grid a:hover {
  color: rgba(255, 255, 255, 0.96);
}

.footer-brand {
  margin-bottom: 0.5rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms cubic-bezier(0.18, 0.85, 0.22, 1),
    transform 620ms cubic-bezier(0.18, 0.85, 0.22, 1);
}

@media (max-width: 1100px) {
  .hero-grid,
  .seller-grid,
  .seller-panel,
  .dashboard-showcase,
  .showcase-bottom {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .feature-grid-horizontal,
  .category-grid,
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-scene,
  .seller-scene {
    min-height: auto;
  }

  .showcase-shell,
  .dashboard-card {
    transform: none;
  }

  .upload-card,
  .floating-badge {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 1rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-top: 0.7rem;
  }

  .nav-shell {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 4rem;
  }

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

  .trust-shell {
    display: grid;
  }

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

  .trust-logos {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .section {
    padding-bottom: 4.5rem;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .feature-grid,
  .feature-grid-horizontal,
  .category-grid,
  .product-grid,
  .testimonial-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .showcase-shell {
    padding: 1rem;
  }

  .primary-card {
    position: relative;
    inset: auto;
  }

  .mini-widget,
  .mini-card-stack {
    position: relative;
    inset: auto;
    width: auto;
    margin-top: 1rem;
  }

  .scene-content {
    display: grid;
    gap: 1rem;
  }

  .dashboard-stats,
  .showcase-top,
  .mini-dashboard-bottom {
    flex-direction: column;
    align-items: stretch;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0s !important;
    animation-duration: 0s !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.dashboard-page .section-heading {
  max-width: 60rem;
}

.dashboard-shell {
  padding-bottom: 4rem;
}

.dashboard-hero {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.eyebrow.small {
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
}

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

.metric-tile,
.chart-card,
.operation-card,
.audit-item {
  border-radius: var(--radius-xl);
}

.metric-tile {
  padding: 1.35rem;
}

.metric-tile span,
.metric-tile small {
  display: block;
}

.metric-tile span {
  color: rgba(236, 243, 255, 0.72);
  font-size: 0.92rem;
}

.metric-tile strong {
  display: block;
  margin-top: 0.45rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.06em;
}

.metric-tile small {
  margin-top: 0.5rem;
  font-weight: 700;
}

.metric-tile small.positive {
  color: #78e7c6;
}

.metric-tile small.neutral {
  color: #cbd7ff;
}

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

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

.chart-card,
.operation-card {
  padding: 1.35rem;
}

.chart-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.chart-card-head h3,
.operation-card h3 {
  font-size: 1.2rem;
}

.series-chart {
  display: flex;
  align-items: end;
  gap: 0.85rem;
  min-height: 17rem;
  padding: 0.7rem 0.3rem 0.2rem;
}

.series-chart.secondary .series-bar {
  background: linear-gradient(180deg, #6ddcff 0%, #4b7cff 100%);
}

.series-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-height: 100%;
}

.series-bar {
  width: 100%;
  min-height: 1rem;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #8e7eff 0%, #4b7cff 100%);
  box-shadow: 0 18px 36px rgba(88, 112, 255, 0.26);
}

.series-bar.secondary {
  background: linear-gradient(180deg, #6ddcff 0%, #4b7cff 100%);
}

.series-item span {
  font-size: 0.82rem;
  color: rgba(237, 242, 255, 0.72);
}

.distribution-list {
  display: grid;
  gap: 0.9rem;
}

.distribution-row {
  display: grid;
  gap: 0.6rem;
}

.distribution-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.distribution-copy strong,
.distribution-copy span {
  font-size: 0.94rem;
}

.distribution-copy span {
  color: rgba(237, 242, 255, 0.72);
}

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

.distribution-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4bd1ff 0%, #6686ff 52%, #8d6aff 100%);
}

.dashboard-lower-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.check-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.check-item {
  padding: 1rem 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.check-item strong,
.check-item span {
  display: block;
}

.check-item span {
  margin-top: 0.35rem;
  color: rgba(237, 242, 255, 0.72);
}

.audit-feed {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.audit-item {
  padding: 0.95rem 1rem;
}

.audit-item strong,
.audit-item span,
.audit-item small {
  display: block;
}

.audit-item span,
.audit-item small,
.chart-empty {
  margin-top: 0.3rem;
  color: rgba(237, 242, 255, 0.72);
}

@media (max-width: 1100px) {
  .metric-grid,
  .admin-grid,
  .admin-lower-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .metric-grid,
  .analytics-grid,
  .dashboard-lower-grid,
  .admin-grid,
  .admin-lower-grid {
    grid-template-columns: 1fr;
  }
}
