:root {
  --bg: #0b0c10;
  --bg-2: #12141a;
  --card: rgba(21, 24, 32, 0.86);
  --card-strong: rgba(27, 31, 41, 0.94);
  --line: rgba(174, 187, 224, 0.16);
  --primary: #7568f5;
  --secondary: #9589ff;
  --glow: #b7b0ff;
  --text: #f7f8fc;
  --muted: #aeb4c2;
  --soft: #dedbff;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  color-scheme: dark;
  font-family: Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 76% -4%, rgba(117, 104, 245, 0.16), transparent 30rem),
    linear-gradient(180deg, #0b0c10 0%, #0d0f15 48%, #0a0b0f 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 0, black, transparent 58%);
}

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

#particle-canvas,
.nebula,
.event-horizon,
.mouse-glow {
  position: fixed;
  pointer-events: none;
}

#particle-canvas {
  inset: 0;
  z-index: -2;
}

.nebula {
  width: 42rem;
  height: 42rem;
  z-index: -4;
  border-radius: 50%;
  filter: blur(82px);
  opacity: 0.16;
}

.nebula-one {
  top: -8rem;
  right: 0;
  background: rgba(107, 77, 255, 0.34);
  transform: translateX(34%);
  animation: driftOne 13s ease-in-out infinite alternate;
}

.nebula-two {
  left: 0;
  bottom: 8rem;
  background: rgba(139, 108, 255, 0.2);
  transform: translateX(-42%);
  animation: driftTwo 17s ease-in-out infinite alternate-reverse;
}

.event-horizon {
  inset: auto 0 -34rem;
  height: 48rem;
  z-index: -3;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(ellipse at center, transparent 0 38%, rgba(169, 140, 255, 0.14) 39%, transparent 41%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.95), transparent 64%);
  filter: blur(1px);
}

.mouse-glow {
  left: var(--mx, 50%);
  top: var(--my, 50%);
  width: 26rem;
  height: 26rem;
  z-index: -1;
  translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 140, 255, 0.17), transparent 67%);
  transition: left 0.16s linear, top 0.16s linear;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin-top: 16px;
  padding: 0 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  translate: -50% 0;
  border: 1px solid rgba(169, 140, 255, 0.18);
  border-radius: 22px;
  background: rgba(11, 11, 14, 0.7);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
  transition: background 0.25s ease, border-color 0.25s ease, height 0.25s ease;
}

.site-header.scrolled {
  height: 64px;
  background: rgba(5, 5, 5, 0.72);
  border-color: rgba(169, 140, 255, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 16px;
  background: rgba(107, 77, 255, 0.12);
  border: 1px solid rgba(169, 140, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 16px 42px rgba(107, 77, 255, 0.18);
}
.brand-mark svg {
  width: 100%;
  height: 100%;
}
.brand-mark svg rect {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.5;
}

.brand span:last-child {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--soft);
}

.nav-action,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(169, 140, 255, 0.28);
  border-radius: 14px;
  font-weight: 800;
  isolation: isolate;
}

.nav-action,
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 38px rgba(107, 77, 255, 0.42);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.ripple::before {
  content: "";
  position: absolute;
  left: var(--rx, 50%);
  top: var(--ry, 50%);
  width: 0;
  height: 0;
  z-index: -1;
  translate: -50% -50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  opacity: 0;
  transition: width 0.42s ease, height 0.42s ease, opacity 0.42s ease;
}

.ripple:hover::before {
  width: 260px;
  height: 260px;
  opacity: 1;
}

.hero {
  min-height: 100vh;
  padding: 158px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.hero-copy,
.section-heading,
.pricing-panel > div,
.site-footer > div {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(169, 140, 255, 0.22);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(107, 77, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
}

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

h1,
h2 {
  background: linear-gradient(90deg, #ffffff, #ddd6ff 46%, #8b6cff);
  background-clip: text;
  color: transparent;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p,
.section-heading p {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.hero-actions,
.pricing-actions,
.activation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics div,
.dashboard-stats article {
  padding: 18px;
  border: 1px solid rgba(169, 140, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.hero-metrics strong,
.dashboard-stats strong {
  display: block;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.18rem;
}

.hero-metrics span,
.dashboard-stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  overflow: hidden;
}

.void-ring {
  position: absolute;
  width: min(560px, 76vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #030303 0 34%, transparent 36%),
    conic-gradient(from 30deg, transparent, rgba(169, 140, 255, 0.66), transparent, rgba(107, 77, 255, 0.42), transparent);
  filter: blur(0.4px);
  animation: rotateRing 18s linear infinite;
}

.screenshot-frame {
  position: relative;
  min-height: 260px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(169, 140, 255, 0.26);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.03)),
    rgba(17, 17, 20, 0.72);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.48),
    0 0 80px rgba(107, 77, 255, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  backdrop-filter: blur(20px);
}

.hero-shot {
  width: min(720px, 100%);
  aspect-ratio: 16 / 10;
  min-height: 0;
  transform: rotateY(-12deg) rotateX(8deg);
  animation: floatPanel 6s ease-in-out infinite;
}

.screenshot-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 228px;
  object-fit: cover;
  border-radius: 16px;
  filter: saturate(0.95) contrast(1.08);
}

.product-preview {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(197, 193, 255, 0.12);
  border-radius: 14px;
  background: #11131b;
}

.product-preview-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #171a24;
}

.product-preview-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5c6070;
}

.product-preview-bar span:first-child { background: #9589ff; }

.product-preview-body {
  display: grid;
  grid-template-columns: 30% 1fr;
  min-height: 210px;
}

.product-preview-menu {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  color: #d9d7ff;
  font-size: 0.7rem;
}

.product-preview-menu i,
.product-preview-workspace div i {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: rgba(212, 208, 255, 0.18);
}

.product-preview-workspace {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 32px;
  background: radial-gradient(circle at 80% 10%, rgba(117, 104, 245, 0.22), transparent 40%), #12151e;
}

.product-preview-workspace small { color: #a9a4df; font-weight: 800; letter-spacing: 0.12em; }
.product-preview-workspace strong { font: 700 clamp(1.35rem, 3vw, 2.1rem) / 1.05 "Space Grotesk", sans-serif; }
.product-preview-workspace div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.product-preview-workspace div i { height: 58px; background: linear-gradient(145deg, rgba(149, 137, 255, 0.28), rgba(255, 255, 255, 0.05)); }

.hero-shot img {
  min-height: 0;
}

.shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.16) 42%, transparent 58%);
  translate: -110% 0;
  transition: translate 0.7s ease;
}

.screenshot-frame:hover .shine {
  translate: 110% 0;
}

.feature-section,
.pricing,
.activation,
.dashboard,
.downloads,
.support,
.legal {
  padding: 92px 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 42px;
}

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

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

.glass-card,
.pricing-panel,
.activation-panel,
.dashboard-shell,
.accordion,
.legal-card,
.dashboard-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.feature-card,
.download-grid .glass-card,
.legal-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 18px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover,
.download-grid .glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(169, 140, 255, 0.48);
  box-shadow: 0 34px 100px rgba(107, 77, 255, 0.28);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  border: 1px solid rgba(169, 140, 255, 0.28);
  border-radius: 14px;
  background: rgba(107, 77, 255, 0.12);
  color: var(--soft);
  font-weight: 900;
}

.feature-card h3,
.pricing-panel h3,
.dashboard-main h3,
.download-grid h3 {
  font-size: 1.28rem;
}

.pricing-panel {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 22px;
}

.pricing-panel p {
  max-width: 680px;
  margin: 10px 0 0;
}

.pricing-actions {
  justify-content: flex-end;
}

.activation-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  padding: 34px;
  border-radius: 22px;
}

.activation-status {
  min-height: 148px;
  padding: 24px;
  border: 1px solid rgba(169, 140, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.activation-status span,
.activation-form label {
  display: block;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.activation-status strong {
  display: block;
  margin-top: 18px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  overflow-wrap: anywhere;
}

.activation-panel.linked .activation-status {
  border-color: rgba(169, 140, 255, 0.48);
  box-shadow: 0 0 42px rgba(169, 140, 255, 0.14);
}

.activation-form {
  display: grid;
  gap: 12px;
}

.activation-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(169, 140, 255, 0.24);
  border-radius: 14px;
  outline: none;
  color: var(--text);
  background: rgba(5, 5, 5, 0.72);
  font: inherit;
  font-weight: 700;
}

.activation-form input:focus {
  border-color: rgba(169, 140, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(169, 140, 255, 0.12);
}

.activation-actions {
  margin-top: 8px;
}

.activation-message {
  grid-column: 1 / -1;
  margin: 0;
}

.activation-message.ok {
  color: #d8ceff;
}

.activation-message.bad {
  color: #ff9ab0;
}

.activation-message a {
  color: var(--text);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(169, 140, 255, 0.62);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border-radius: 24px;
}

.dashboard-sidebar {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(169, 140, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
}

.dashboard-sidebar strong {
  margin-bottom: 16px;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.dashboard-sidebar span,
.dashboard-nav {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
}

.dashboard-nav {
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-nav:hover {
  color: var(--text);
  background: rgba(169, 140, 255, 0.08);
}

.dashboard-sidebar .active,
.dashboard-nav.active {
  color: white;
  background: linear-gradient(90deg, rgba(107, 77, 255, 0.82), rgba(169, 140, 255, 0.18));
  box-shadow: 0 0 28px rgba(107, 77, 255, 0.22);
}

.dashboard-logout {
  margin-top: auto;
}

.dashboard-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.dashboard-gate {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(169, 140, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.dashboard-gate .button {
  margin-top: 18px;
}

.dashboard-gate[hidden],
.dashboard-content[hidden] {
  display: none;
}

.dashboard[hidden] {
  display: none;
}

.dashboard-panel-view[hidden] {
  display: none;
}

.dashboard-panel-view {
  display: grid;
  gap: 18px;
  align-content: start;
}

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

.profile-grid article {
  padding: 18px;
  border: 1px solid rgba(169, 140, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.profile-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.profile-grid strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", Inter, sans-serif;
  overflow-wrap: anywhere;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-panel {
  margin-top: 4px;
}

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

.settings-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(169, 140, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.settings-list strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.settings-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-action.is-member {
  color: white;
  background: rgba(107, 77, 255, 0.28);
  border-color: rgba(169, 140, 255, 0.34);
}

.dashboard-main {
  padding: 28px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.welcome-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(169, 140, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.welcome-card .eyebrow {
  margin-bottom: 10px;
}

.welcome-card p,
.activity-panel p {
  margin: 8px 0 0;
}

.avatar-orb {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, #050505 0 28%, transparent 30%),
    conic-gradient(#6b4dff, #a98cff, #31205d, #6b4dff);
  box-shadow: 0 0 38px rgba(169, 140, 255, 0.34);
  overflow: hidden;
}

.avatar-orb.has-avatar {
  padding: 4px;
  background: conic-gradient(#6b4dff, #a98cff, #31205d, #6b4dff);
}

.avatar-orb img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #050505;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.activity-panel,
.dashboard-panel {
  padding: 24px;
  border: 1px solid rgba(169, 140, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.dashboard-panel[hidden] {
  display: none;
}

.dashboard-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-heading .eyebrow {
  margin-bottom: 0;
}

.license-list {
  display: grid;
  gap: 12px;
}

.license-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(169, 140, 255, 0.16);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.48);
}

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

.license-card strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
  text-transform: capitalize;
}

.license-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.license-card small,
.dashboard-empty {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  overflow-wrap: anywhere;
}

.license-card button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.download-grid .button {
  margin-top: 10px;
}

.accordion {
  border-radius: 20px;
  overflow: hidden;
}

.accordion-item {
  width: 100%;
  min-height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-bottom: 1px solid rgba(169, 140, 255, 0.14);
  color: white;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-content p {
  margin: 0;
  padding: 0 24px 24px;
}

.accordion-item.active b {
  color: var(--soft);
  transform: rotate(45deg);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 70px auto 140px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  border-top: 1px solid rgba(169, 140, 255, 0.18);
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: end;
  color: white;
  font-weight: 700;
}

.site-footer > span {
  grid-column: 1 / -1;
}

.download-dock {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 19;
  display: flex;
  gap: 12px;
  padding: 10px;
  translate: -50% 0;
  border: 1px solid rgba(169, 140, 255, 0.16);
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.64);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.download-dock.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.license-confirm-dialog {
  width: min(520px, calc(100% - 28px));
  padding: 0;
  border: 1px solid rgba(169, 140, 255, 0.28);
  border-radius: 18px;
  color: var(--text);
  background: #12141b;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
}

.license-confirm-dialog::backdrop {
  background: rgba(4, 5, 8, 0.78);
  backdrop-filter: blur(8px);
}

.license-confirm-form {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.license-confirm-heading .eyebrow { margin-bottom: 12px; }
.license-confirm-heading h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
.license-confirm-heading p { margin: 12px 0 4px; }

.license-confirm-form label {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.license-confirm-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(169, 140, 255, 0.28);
  border-radius: 10px;
  outline: none;
  color: var(--text);
  background: #0b0d12;
  font: inherit;
}

.license-confirm-form input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(149, 137, 255, 0.12);
}

.license-confirm-form select,
.license-confirm-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(169, 140, 255, 0.28);
  border-radius: 10px;
  outline: none;
  color: var(--text);
  background: #0b0d12;
  font: inherit;
}

.license-confirm-form select:focus,
.license-confirm-form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(149, 137, 255, 0.12);
}

.license-confirm-form textarea {
  min-height: 130px;
  resize: vertical;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
}

.platform-selector legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.platform-selector label {
  position: relative;
  display: block;
  cursor: pointer;
}

.platform-selector input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.platform-selector span {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 15px;
  align-content: center;
  border: 1px solid rgba(169, 140, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.platform-selector small {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: none;
}

.platform-selector input:checked + span {
  border-color: var(--secondary);
  background: rgba(117, 104, 245, 0.14);
  box-shadow: 0 0 0 3px rgba(149, 137, 255, 0.08);
}

.platform-selector input:focus-visible + span {
  outline: 2px solid var(--soft);
  outline-offset: 2px;
}

.license-confirm-message {
  min-height: 24px;
  margin: 0;
  color: #ffb1c1;
}

.license-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 520px) {
  .platform-selector { grid-template-columns: 1fr; }
  .license-confirm-actions { flex-direction: column-reverse; }
  .license-confirm-actions .button { width: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes driftOne {
  from { transform: translate3d(34%, 0, 0) scale(1); }
  to { transform: translate3d(26%, -3rem, 0) scale(1.08); }
}

@keyframes driftTwo {
  from { transform: translate3d(-42%, 0, 0) scale(1); }
  to { transform: translate3d(-32%, -3rem, 0) scale(1.08); }
}

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

@keyframes floatPanel {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 136px;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .activation-panel,
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(169, 140, 255, 0.16);
  }

  .dashboard-logout {
    margin-top: 0;
  }

  .dashboard-sidebar strong {
    grid-column: 1 / -1;
  }

  .nebula,
  .event-horizon,
  .mouse-glow {
    opacity: 0.22;
  }
}

@media (max-width: 680px) {
  [id] {
    scroll-margin-top: 96px;
  }

  .site-header {
    width: calc(100% - 20px);
    padding-left: 14px;
  }

  .nav-action {
    display: none;
  }

  .section-shell,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3rem);
    line-height: 1;
  }

  .hero {
    gap: 24px;
    padding-bottom: 40px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-shot {
    transform: rotateY(-4deg) rotateX(4deg);
  }

  .hero-metrics,
  .feature-grid,
  .download-grid,
  .pricing-panel,
  .pricing-actions,
  .dashboard-stats,
  .license-card,
  .profile-grid,
  .settings-list article,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .pricing-actions .button,
  .license-card .button {
    width: 100%;
  }

  .dashboard-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
  }

  .dashboard-main,
  .activation-panel {
    padding: 20px;
  }

  .welcome-card {
    align-items: flex-start;
    flex-direction: column;
  }

  #particle-canvas,
  .nebula,
  .event-horizon,
  .mouse-glow {
    display: none;
  }

  .site-footer nav {
    justify-content: start;
  }

  .download-dock {
    width: calc(100% - 20px);
    bottom: 10px;
  }

  .download-dock .button {
    flex: 1;
    padding: 0 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Calm, product-focused visual pass */
.site-header {
  border-radius: 16px;
  background: rgba(16, 18, 24, 0.84);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.26);
}

.site-header.scrolled {
  background: rgba(12, 14, 19, 0.96);
}

.brand-mark,
.nav-action,
.button {
  border-radius: 10px;
}

.nav-action,
.button-primary {
  box-shadow: 0 10px 24px rgba(117, 104, 245, 0.2);
}

.hero {
  gap: 64px;
}

.hero-visual {
  min-height: 520px;
}

.void-ring {
  opacity: 0.5;
  filter: blur(0.8px);
  animation: none;
}

.hero-shot {
  transform: rotateY(-5deg) rotateX(3deg);
  animation: none;
}

.screenshot-frame {
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.feature-card,
.download-grid .glass-card,
.legal-card,
.pricing-panel,
.dashboard-shell,
.accordion {
  border-radius: 16px;
}

.feature-card:hover,
.download-grid .glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 140, 255, 0.38);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.feature-icon {
  margin-bottom: 22px;
  border-radius: 12px;
}

.hero-metrics div,
.dashboard-stats article,
.profile-grid article,
.license-card,
.activity-panel,
.settings-list article {
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 680px) {
  .hero-visual {
    min-height: 380px;
  }
}

