﻿:root {
  --bg: #05060f;
  --bg-2: #090b18;
  --surface: rgba(15, 18, 34, 0.88);
  --surface-2: rgba(11, 13, 24, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 172, 92, 0.22);
  --text: #f5f7ff;
  --muted: #a7b0d1;
  --accent: #ff8a1f;
  --accent-2: #ffb14d;
  --violet: #8b5cf6;
  --good: #45f0a0;
  --warning: #ffb14d;
  --danger: #ff6a6a;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 138, 31, 0.16), transparent 26%),
    radial-gradient(circle at 82% 0%, rgba(139, 92, 246, 0.18), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(255, 177, 77, 0.08), transparent 30%),
    linear-gradient(180deg, #03040a 0%, #060712 28%, #090b16 100%);
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

.bg-grid,
.bg-orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 88%);
}

.bg-orb {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.34;
}

.bg-orb-left {
  top: -180px;
  left: -160px;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.55), transparent 66%);
}

.bg-orb-right {
  top: 120px;
  right: -220px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.55), transparent 66%);
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  width: min(94%, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: 252px;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(255, 138, 31, 0.12));
}

.topnav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  flex-wrap: wrap;
}

.topnav a {
  transition: color 180ms ease, opacity 180ms ease;
}

.topnav a:hover {
  color: var(--text);
}

.topbar-actions,
.inline-actions,
.session-chip,
.hero-actions,
.hero-metrics,
.auth-tabs,
.preview-badges,
.preview-status-stack,
.preview-metrics,
.preview-panels,
.preview-bottom,
.graph-legend,
.download-badges,
.support-grid,
.footer-columns,
.footer-meta,
.footer-socials {
  display: flex;
}

.topbar-actions {
  align-items: center;
  gap: 14px;
}

.inline-actions {
  gap: 12px;
}

.session-chip {
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.session-chip strong,
.session-chip span {
  display: block;
}

.session-chip strong {
  font-size: 0.96rem;
}

.session-chip span {
  color: var(--muted);
  font-size: 0.84rem;
}

.session-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  color: #fff;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-primary {
  color: #120b08;
  background: linear-gradient(135deg, #ffbb61, #ff8a1f 40%, #a56bff 100%);
  box-shadow: 0 16px 30px rgba(255, 138, 31, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.btn-compact {
  min-height: 42px;
  padding: 0 16px;
}

.btn-full {
  width: 100%;
}

.icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  flex: 0 0 auto;
}

.btn svg,
.hero-btn svg,
.window-add-button svg,
.download-badges svg,
.feature-icon svg,
.benefit-icon svg,
.pricing-note-icon svg,
.download-icon svg {
  width: 18px;
  height: 18px;
}

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

.hero {
  padding: 36px 0 64px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 110px);
}

.hero-copy,
.feature-card,
.plan-card,
.download-card,
.support-card,
.auth-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 18, 34, 0.9), rgba(10, 11, 22, 0.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-copy {
  padding: 38px;
  border-radius: 34px;
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  color: #ffd7b2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.55);
}

.accent {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(255, 138, 31, 0.15);
}

.hero h1 {
  margin-top: 16px;
  font-size: clamp(3rem, 4.8vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.tagline {
  margin-top: 18px;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  color: #eef1ff;
  max-width: 22ch;
}

.subtext {
  margin-top: 16px;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-platforms span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d8def6;
  font-size: 0.86rem;
}

.hero-metrics {
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-metrics > div {
  flex: 1 1 160px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics strong {
  display: block;
  font-size: 1.05rem;
}

.hero-metrics span {
  color: var(--muted);
  line-height: 1.45;
}

.product-preview {
  min-width: 0;
  align-self: center;
}

.hero-product-preview {
  position: relative;
  width: min(980px, 62vw);
  height: clamp(520px, 58vw, 720px);
  margin-left: auto;
  display: block;
  isolation: isolate;
}

.hero-product-preview::before {
  content: "";
  position: absolute;
  inset: 3% 4% 3% 0;
  border-radius: 42px;
  background:
    radial-gradient(circle at 72% 18%, rgba(139, 92, 246, 0.28), transparent 36%),
    radial-gradient(circle at 68% 78%, rgba(255, 138, 31, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(255, 138, 31, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(255, 138, 31, 0.22);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.12) inset,
    0 34px 110px rgba(0, 0, 0, 0.62),
    0 0 90px rgba(139, 92, 246, 0.18);
  z-index: -2;
}

.hero-product-preview::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 70%;
  height: 42%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.25), transparent 70%);
  filter: blur(36px);
  z-index: -1;
}

.hero-product-main {
  position: absolute;
  left: 0;
  top: 17%;
  width: 88%;
  max-width: none;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 138, 31, 0.12) inset;
}

.hero-product-modal {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 78%;
  max-width: none;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 95px rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(255, 138, 31, 0.14) inset;
}

.hero-product-modal,
.hero-product-main {
  image-rendering: auto;
}

.preview-app-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-window-dots {
  display: flex;
  gap: 6px;
}

.preview-window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.preview-window-dots span:nth-child(1) {
  background: #ff5f57;
}

.preview-window-dots span:nth-child(2) {
  background: #febc2e;
}

.preview-window-dots span:nth-child(3) {
  background: #28c840;
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.preview-brand strong {
  display: block;
  font-size: 1rem;
}

.preview-brand span {
  color: var(--muted);
  font-size: 0.84rem;
}

.preview-badges,
.preview-status-stack,
.graph-legend,
.download-badges {
  gap: 10px;
  flex-wrap: wrap;
}

.preview-badge,
.preview-state,
.panel-pill,
.plan-tag,
.download-badges span,
.footer-socials a {
  font-family: "IBM Plex Mono", monospace;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.8rem;
}

.preview-badge.good,
.preview-state.success {
  border-color: rgba(69, 240, 160, 0.2);
  background: rgba(69, 240, 160, 0.1);
  color: #caffde;
}

.preview-badge.warn,
.preview-state.danger {
  border-color: rgba(255, 106, 106, 0.2);
  background: rgba(255, 106, 106, 0.08);
  color: #ffc7c7;
}

.preview-badge.warn {
  color: #ffe6b5;
}

.preview-app {
  display: grid;
  gap: 14px;
}

.preview-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-add-button,
.preview-icon-button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--text);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
}

.preview-add-button {
  padding: 0 16px;
  background: linear-gradient(135deg, rgba(255, 138, 31, 0.95), rgba(139, 92, 246, 0.95));
  box-shadow: 0 10px 24px rgba(255, 138, 31, 0.18);
}

.preview-icon-button {
  width: 42px;
  padding: 0;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.preview-stats article {
  padding: 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.preview-stats span,
.preview-stats strong {
  display: block;
}

.preview-stats span {
  color: #98a1c6;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.preview-stats strong {
  font-size: 1.2rem;
}

.preview-workspace {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.92fr;
  gap: 14px;
  align-items: start;
}

.preview-task-table {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.table-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 18px 18px 14px;
}

.table-toolbar h3 {
  font-size: 1.28rem;
}

.table-toolbar span {
  color: var(--muted);
  font-size: 0.86rem;
}

.task-table-head,
.task-row {
  display: grid;
  grid-template-columns: 0.6fr 1.5fr 0.7fr 0.8fr 0.7fr 1.1fr 0.7fr;
  gap: 12px;
  align-items: center;
}

.task-table-head {
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #9da6cb;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.task-row {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.task-row:last-child {
  border-bottom: 0;
}

.task-thumb {
  width: 80px;
  height: 45px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.task-thumb.empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 1rem;
}

.task-name strong,
.task-duration strong {
  display: block;
  font-size: 0.96rem;
}

.task-name span,
.task-name small,
.task-duration span,
.task-start {
  display: block;
  color: var(--muted);
}

.task-name small {
  font-size: 0.82rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.status-pill.idle {
  background: rgba(163, 179, 214, 0.08);
  color: #cad1e9;
}

.status-pill.done {
  background: rgba(255, 193, 70, 0.12);
  color: #ffe295;
}

.status-pill.error {
  background: rgba(255, 106, 106, 0.12);
  color: #ffb7b7;
}

.task-progress {
  display: grid;
  gap: 7px;
}

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

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #f9cc54, #60d5ff);
}

.progress-good span {
  background: linear-gradient(90deg, #ff9e38, #ffcc55, #60e7df);
}

.progress-warn span {
  background: linear-gradient(90deg, #ff7c32, #ffba4e, #61d1ff);
}

.task-actions {
  color: #cfd5ef;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.preview-modal {
  position: absolute;
  top: -18px;
  right: -12px;
  width: min(560px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 17, 23, 0.98), rgba(10, 10, 14, 0.98)),
    linear-gradient(135deg, rgba(255, 138, 31, 0.1), rgba(139, 92, 246, 0.08));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.54);
  padding: 18px;
}

.preview-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.preview-modal-head h3 {
  font-size: 1.28rem;
}

.preview-modal-head p {
  margin-top: 8px;
  color: var(--muted);
}

.preview-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.preview-modal-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.preview-field {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.preview-field.wide {
  grid-column: 1 / -1;
}

.preview-field span {
  display: block;
  color: #9da6cb;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.fake-input,
.preview-input-row button {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.fake-input {
  padding: 0 14px;
}

.fake-input.select {
  color: #d3d7e8;
}

.preview-field.resolved {
  border-color: rgba(69, 240, 160, 0.24);
  background: rgba(69, 240, 160, 0.06);
}

.preview-field.resolved strong {
  display: block;
  margin-bottom: 8px;
}

.preview-field.resolved small {
  color: var(--muted);
}

.preview-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.preview-input-row button {
  padding: 0 14px;
  cursor: pointer;
}

.preview-advanced {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.preview-advanced > span {
  display: block;
  margin-bottom: 12px;
  color: #e8ebff;
  font-weight: 600;
}

.preview-advanced-content {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
}

.preview-advanced-content img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

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

.advanced-meta small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.preview-modal-footer {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.modal-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-options span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.84rem;
}

.preview-sidebar {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.preview-sidebar-item {
  padding: 13px 14px;
  border-radius: 16px;
  color: var(--muted);
  background: transparent;
}

.preview-sidebar-item.active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(255, 138, 31, 0.16), rgba(139, 92, 246, 0.14));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.preview-main {
  display: grid;
  gap: 14px;
}

.preview-hero-card,
.preview-panel,
.support-card,
.feature-card,
.plan-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-hero-card {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.1), rgba(139, 92, 246, 0.12)),
    rgba(255, 255, 255, 0.03);
}

.preview-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffdcb9;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.preview-hero-card strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.preview-hero-card p,
.preview-label + strong + p,
.preview-panel p,
.support-card p,
.feature-card p,
.plan-card p,
.download-copy p,
.hero-copy .subtext {
  color: var(--muted);
}

.preview-metrics {
  gap: 12px;
  flex-wrap: wrap;
}

.preview-metrics article {
  flex: 1 1 140px;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.preview-metrics span,
.preview-metrics small,
.storage-lines,
.mini-list span,
.mini-list strong {
  display: block;
}

.preview-metrics span,
.storage-lines,
.mini-list span {
  color: var(--muted);
}

.preview-metrics strong {
  display: block;
  margin: 8px 0 2px;
  font-size: 1.55rem;
}

.preview-panels,
.preview-bottom {
  gap: 14px;
  flex-wrap: wrap;
}

.preview-panel {
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.preview-panel-large {
  flex: 1 1 520px;
}

.preview-panel-graph,
.preview-panel-storage {
  flex: 1 1 240px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.panel-head h3 {
  font-size: 1rem;
}

.panel-pill.warm {
  color: #ffd8b1;
}

.table-like {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.table-like div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.table-like span,
.table-like strong,
.plan-list li {
  display: block;
}

.table-like span {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.table-like strong {
  font-size: 0.95rem;
}

.graph {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  min-height: 190px;
  padding: 10px 0 8px;
}

.graph span {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 184, 91, 0.98), rgba(139, 92, 246, 0.7));
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.12);
  animation: pulse 2.8s ease-in-out infinite;
}

.graph span:nth-child(1) { height: 42px; }
.graph span:nth-child(2) { height: 72px; animation-delay: 0.08s; }
.graph span:nth-child(3) { height: 96px; animation-delay: 0.16s; }
.graph span:nth-child(4) { height: 82px; animation-delay: 0.24s; }
.graph span:nth-child(5) { height: 124px; animation-delay: 0.32s; }
.graph span:nth-child(6) { height: 90px; animation-delay: 0.4s; }
.graph span:nth-child(7) { height: 128px; animation-delay: 0.48s; }
.graph span:nth-child(8) { height: 74px; animation-delay: 0.56s; }
.graph span:nth-child(9) { height: 108px; animation-delay: 0.64s; }
.graph span:nth-child(10) { height: 62px; animation-delay: 0.72s; }
.graph span:nth-child(11) { height: 94px; animation-delay: 0.8s; }
.graph span:nth-child(12) { height: 56px; animation-delay: 0.88s; }

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 8px;
}

.legend-dot.orange {
  background: var(--accent);
}

.legend-dot.violet {
  background: var(--violet);
}

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

.mini-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.mini-list strong {
  color: #dffbea;
  font-size: 0.92rem;
}

.donut {
  width: 148px;
  height: 148px;
  margin: 8px auto 16px;
  border-radius: 50%;
  background:
    conic-gradient(var(--accent) 0 244deg, rgba(255, 255, 255, 0.08) 244deg 360deg);
  display: grid;
  place-items: center;
}

.donut-inner {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0a0c16;
  text-align: center;
}

.donut-inner strong {
  font-size: 1.3rem;
}

.donut-inner span {
  color: var(--muted);
  font-size: 0.82rem;
}

.storage-lines {
  display: grid;
  gap: 6px;
}

.feature-section,
.pricing-section,
.download-section,
.support-section {
  padding-top: 16px;
  padding-bottom: 28px;
}

.feature-section, .pricing-section {
    width: min(80%, 80%);
    margin-left: auto;
    margin-right: auto;
    padding: 34px 28px 36px;
    border-radius: 34px;
    /* border: 1px solid rgba(255, 184, 90, 0.12); */
    /* background: linear-gradient(180deg, rgba(11, 13, 22, 0.94), rgba(7, 8, 15, 0.96)), linear-gradient(135deg, rgba(255, 138, 31, 0.04), rgba(139, 92, 246, 0.03)); */
    /* box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.02) inset; */
}

.pricing-section {
  margin-top: 18px;
}

.section-heading {
  margin-bottom: 22px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(1.95rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 12px auto 0;
  max-width: 58ch;
  line-height: 1.7;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 246px;
  padding: 26px 18px 22px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(14, 16, 28, 0.96), rgba(10, 11, 20, 0.98)),
    linear-gradient(135deg, rgba(255, 138, 31, 0.05), rgba(255, 177, 77, 0.02));
  border: 1px solid rgba(255, 181, 92, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.feature-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 18px;
  color: #ffb14d;
  font-size: 1.6rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 184, 90, 0.14), transparent 66%),
    linear-gradient(180deg, rgba(255, 138, 31, 0.08), rgba(255, 138, 31, 0.03));
  border: 1px solid rgba(255, 175, 77, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 24px rgba(255, 138, 31, 0.07);
}

.feature-icon .icon {
  width: 26px;
  height: 26px;
}

.feature-card h3,
.plan-card h3,
.download-copy h2,
.support-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p,
.support-card p,
.download-copy p,
.plan-card p {
  line-height: 1.65;
}

.feature-card p {
  font-size: 0.98rem;
  color: #c1c8e2;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  min-height: 420px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 138, 31, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(15, 17, 30, 0.96), rgba(8, 9, 17, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 22px 60px rgba(0, 0, 0, 0.34);
  overflow: visible;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 36%, rgba(255, 138, 31, 0.035));
  opacity: 0.9;
}

.plan-card.highlighted {
  border-color: rgba(255, 153, 38, 0.62);
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 138, 31, 0.16), transparent 36%),
    radial-gradient(circle at 92% 12%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(18, 17, 27, 0.98), rgba(9, 10, 18, 0.98));
  box-shadow:
    0 28px 85px rgba(255, 138, 31, 0.12),
    0 28px 90px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 174, 74, 0.16) inset;
}

.plan-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #1a0f05;
  font-size: 0.82rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd166 0%, #ff9d16 55%, #ff7a1a 100%);
  box-shadow:
    0 14px 28px rgba(255, 138, 31, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  z-index: 2;
}

.plan-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  text-align: left;
}

.plan-head > div:first-child {
  display: grid;
  gap: 7px;
}

.plan-tag {
  width: fit-content;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffe2bf;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 177, 77, 0.16);
  background: rgba(255, 138, 31, 0.055);
}

.plan-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  text-align: left;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.plan-price strong {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: #fff3e5;
  font-size: clamp(2rem, 2.2vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.plan-price span {
  color: #aeb6d4;
  font-size: 0.95rem;
}

.plan-list {
  position: relative;
  z-index: 1;
  margin: 20px 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  color: #c1c8e2;
  line-height: 1.45;
}

.plan-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.96rem;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffb14d;
  border-bottom: 2px solid #ffb14d;
  transform: rotate(-45deg);
  opacity: 0.95;
}

.plan-card .btn {
  position: relative;
  z-index: 1;
  margin-top: auto;
  min-height: 48px;
  border-radius: 13px;
}

.plan-card .btn-secondary {
  border-color: rgba(255, 177, 77, 0.18);
  background: rgba(255, 255, 255, 0.025);
}

.plan-card .btn-secondary:hover {
  border-color: rgba(255, 177, 77, 0.38);
  background: rgba(255, 138, 31, 0.07);
}

.plan-card.highlighted .btn-primary {
  color: #170d05;
  background: linear-gradient(135deg, #ffd166 0%, #ff9d16 48%, #b86cff 100%);
  box-shadow:
    0 18px 36px rgba(255, 138, 31, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.pricing-note {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #aeb6d4;
  font-size: 0.95rem;
}

.pricing-note-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffb14d;
  border: 1px solid rgba(255, 184, 90, 0.22);
  background: rgba(255, 138, 31, 0.06);
}

.download-strip {
  padding-top: 28px;
  padding-bottom: 0;
}

.download-strip-card {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1.35fr 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 138, 31, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.08), rgba(139, 92, 246, 0.055)),
    rgba(7, 8, 15, 0.86);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.download-main {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.download-windows-icon {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.download-windows-icon i {
  font-size: 3rem;
  line-height: 1;
  color: #ffb14d;
}

.download-text h2 {
  margin-top: 4px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.download-text p {
  margin-top: 8px;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.45;
}

.download-features {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.download-features span {
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #dfe4ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.25;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.download-features span:last-child {
  border-right: 0;
}

.download-features svg {
  width: 17px;
  height: 17px;
  color: #ffb14d;
  flex: 0 0 auto;
}

.showcase-section {
  padding: 34px 0 14px;
}

.showcase-header {
  width: min(1180px, 100%);
  margin: 0 auto 22px;
  text-align: center;
}

.showcase-header h2 {
  margin-top: 12px;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  letter-spacing: -0.05em;
}

.showcase-header p {
  max-width: 64ch;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.showcase-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.showcase-viewport {
  overflow: hidden;
  border-radius: 34px;
}

.showcase-track {
  display: flex;
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.showcase-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  padding: 22px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 138, 31, 0.09), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(15, 18, 34, 0.96), rgba(8, 10, 18, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 28px 90px rgba(0, 0, 0, 0.34);
}

.showcase-media {
  position: relative;
  min-width: 0;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(32, 94, 255, 0.2), rgba(178, 211, 255, 0.08));
}

.showcase-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0a0c16;
}

.showcase-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.showcase-pill {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd8b1;
  border: 1px solid rgba(255, 177, 77, 0.16);
  background: rgba(255, 138, 31, 0.055);
}

.showcase-copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.showcase-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.showcase-nav {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: #f5f7ff;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.showcase-nav:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 177, 77, 0.24);
  background: rgba(255, 138, 31, 0.08);
}

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.showcase-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.showcase-dot.active {
  background: linear-gradient(135deg, #ffb14d, #8b5cf6);
  box-shadow: 0 0 0 4px rgba(255, 138, 31, 0.08);
  transform: scale(1.08);
}

.download-cta {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.download-cta .btn {
  min-width: 260px;
}

.download-version {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.download-version a {
  color: #ffb14d;
}

.support-grid {
  gap: 14px;
  flex-wrap: wrap;
}

.support-card {
  flex: 1 1 240px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.site-footer {
  width: 100%;
  margin: 41px 0 0 0;
  padding: 34px 0 32px;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,138,31,0.08), transparent 34%),
    linear-gradient(180deg, rgba(5,6,12,0.92), #03040a);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 0.8fr auto;
  gap: 46px;
  align-items: start;
}

.footer-brand-logo {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-brand-block p {
  max-width: 300px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-col {
  display: grid;
  gap: 12px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.96rem;
  margin: 0 0 4px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: var(--text);
}

.site-footer .footer-socials {
  display: flex;
  gap: 12px;
  align-self: center;
}

.site-footer .footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffb14d;
  border: 1px solid rgba(255, 138, 31, 0.18);
  background: rgba(255, 138, 31, 0.055);
}

.site-footer .footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  width: min(1380px, calc(100% - 32px));
  margin: 28px auto 0;
  text-align: center;
  color: rgba(255,255,255,0.48);
  font-size: 0.9rem;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(3, 4, 10, 0.58);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.auth-shell {
  position: fixed;
  inset: 0;
  z-index: 21;
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.auth-overlay.is-open,
.auth-shell.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.auth-shell.is-open {
  pointer-events: auto;
}

.auth-panel {
  position: relative;
  width: min(470px, calc(100vw - 32px));
  border-radius: 26px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(16, 19, 33, 0.98), rgba(10, 11, 20, 0.98)),
    linear-gradient(135deg, rgba(255, 138, 31, 0.08), rgba(139, 92, 246, 0.12));
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.auth-shell.is-open .auth-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

.auth-header {
  padding-right: 48px;
}

.auth-header h2 {
  margin-top: 10px;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.auth-header p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.auth-note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #e7eaf9;
  line-height: 1.5;
}

.auth-tabs {
  gap: 10px;
  margin-top: 18px;
}

.auth-tab {
  flex: 1 1 0;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
}

.auth-tab.active {
  color: var(--text);
  border-color: rgba(255, 138, 31, 0.26);
  background: rgba(255, 138, 31, 0.1);
}

.auth-form {
  display: none;
  gap: 14px;
  margin-top: 18px;
}

.auth-form.active {
  display: grid;
}

.auth-form label {
  display: grid;
  gap: 8px;
}

.auth-form span {
  color: #dfe4ff;
  font-size: 0.92rem;
}

.auth-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
}

.auth-form input:focus {
  border-color: rgba(255, 138, 31, 0.38);
  box-shadow: 0 0 0 4px rgba(255, 138, 31, 0.12);
}

.form-message {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.45;
}

.form-message.success {
  color: #d6ffe6;
  border-color: rgba(69, 240, 160, 0.24);
  background: rgba(69, 240, 160, 0.08);
}

.form-message.error {
  color: #ffd0d0;
  border-color: rgba(255, 106, 106, 0.24);
  background: rgba(255, 106, 106, 0.08);
}

.btn-loader {
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(18, 11, 8, 0.35);
  border-top-color: rgba(18, 11, 8, 0.95);
  animation: spin 900ms linear infinite;
}

.auth-form.loading .btn-loader {
  display: inline-block;
}

.auth-form.loading .btn-label {
  opacity: 0.72;
}

.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.94);
    opacity: 0.78;
  }
  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

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

@media (max-width: 1240px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .topnav {
    justify-content: flex-start;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .download-strip-card {
    grid-template-columns: 1fr;
  }

  .feature-section,
  .pricing-section {
    width: min(92vw, 1280px);
  }

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

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-preview {
    margin-right: 0;
  }

  .hero-product-preview {
    width: 100%;
    height: 620px;
  }

  .hero-product-main {
    width: 92%;
    top: 8%;
  }

  .hero-product-modal {
    width: 78%;
    right: 2%;
    bottom: 4%;
  }

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

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

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

  .preview-modal {
    position: static;
    width: 100%;
  }

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

  .preview-sidebar-item {
    text-align: center;
  }
}

@media (max-width: 860px) {
  .section,
  .topbar {
    width: min(100% - 20px, 1380px);
  }

  .feature-section,
  .pricing-section {
    width: min(100% - 20px, 1380px);
    padding: 26px 18px 28px;
  }

  .hero-copy,
  .hero-product-main,
  .feature-card,
  .plan-card,
  .download-strip-card,
  .support-card,
  .auth-panel {
    border-radius: 22px;
  }

  .hero-copy {
    padding: 26px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

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

  .hero-copy {
    max-width: none;
  }

  .hero-product-preview {
    width: 100%;
    height: 540px;
  }

  .hero-product-main {
    width: 100%;
    top: 4%;
  }

  .hero-product-modal {
    width: 82%;
    right: 2%;
    bottom: 0;
  }

  .topbar-actions,
  .inline-actions,
  .hero-actions,
  .download-cta {
    width: 100%;
  }

  .topbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .inline-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

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

  .preview-sidebar {
    grid-template-columns: 1fr 1fr;
  }

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

  .download-strip-card {
    gap: 18px;
    padding: 22px 20px;
  }

  .showcase-carousel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .showcase-slide {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .showcase-media {
    min-height: 320px;
  }

  .showcase-copy {
    gap: 12px;
  }

  .showcase-nav {
    width: 46px;
    height: 46px;
  }

  .download-features {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
  }

  .download-cta {
    justify-items: start;
  }

  .download-features span {
    min-width: 0;
    flex: 1 1 0;
  }

  .footer-inner {
    width: min(100% - 20px, 1380px);
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .site-footer .footer-socials {
    justify-content: flex-start;
  }

  .auth-shell {
    padding: 12px;
  }
}

@media (max-width: 1180px) {
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card {
    min-height: 390px;
  }
}

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

  .plan-card {
    min-height: auto;
  }

  .plan-price {
    display: grid;
    gap: 4px;
  }

  .plan-price strong {
    font-size: 2.3rem;
  }
}

@media (max-width: 560px) {
  .feature-section,
  .pricing-section {
    padding: 22px 14px 24px;
    border-radius: 24px;
  }

  .topbar,
  .hero-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 20px, 1380px);
  }

  .topnav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    width: 100%;
  }

  .topnav a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .session-chip {
    width: 100%;
  }

  .brand-logo,
  .footer-brand-logo {
    width: 138px;
  }

  .hero-product-preview {
    height: auto;
    display: grid;
    gap: 14px;
  }

  .hero-product-preview::before,
  .hero-product-preview::after {
    display: none;
  }

  .hero-content h1 {
    margin-top: 22px;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-badge {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .hero-buttons {
    gap: 12px;
    margin-top: 26px;
  }

  .hero-source-title {
    margin-top: 26px;
  }

  .hero-benefits {
    margin-top: 34px;
    gap: 18px;
  }

  .hero-product-main,
  .hero-product-modal {
    position: static;
    width: 100%;
    border-radius: 18px;
  }

  .hero-product-main {
    top: auto;
  }

  .hero-product-modal {
    right: auto;
    bottom: auto;
  }

  .preview-sidebar,
  .table-like,
  .preview-stats {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .preview-grid {
    gap: 12px;
  }

  .preview-hero-card,
  .panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics > div,
  .preview-metrics article,
  .support-card {
    flex: 1 1 100%;
  }

  .showcase-section {
    padding-top: 26px;
  }

  .showcase-header {
    margin-bottom: 18px;
  }

  .showcase-header h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  .showcase-header p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .showcase-slide {
    padding: 14px;
    border-radius: 24px;
  }

  .showcase-media {
    min-height: 220px;
    border-radius: 18px;
  }

  .showcase-copy h3 {
    font-size: 1.3rem;
    line-height: 1.12;
  }

  .showcase-copy p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .showcase-nav {
    display: none;
  }

  .hero-platforms {
    gap: 8px;
  }

  .hero-platforms span {
    width: 100%;
    text-align: center;
  }

  .download-main {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: flex-start;
    gap: 14px;
  }

  .download-strip-card {
    padding: 18px 16px;
    gap: 16px;
  }

  .download-windows-icon {
    width: 62px;
    height: 62px;
  }

  .download-windows-icon i {
    font-size: 2.45rem;
  }

  .download-text h2 {
    font-size: 1.08rem;
    line-height: 1.24;
  }

  .download-text p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .download-features {
    flex-direction: column;
    width: 100%;
  }

  .download-features span {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .download-features span:last-child {
    border-bottom: 0;
  }

  .download-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .download-version {
    flex-direction: column;
    gap: 6px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-col {
    gap: 10px;
  }

  .site-footer .footer-socials {
    justify-content: flex-start;
  }

  .footer-bottom {
    margin-top: 22px;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .auth-panel {
    padding: 18px;
  }

  .preview-app-bar,
  .preview-modal-footer,
  .preview-advanced-content {
    grid-template-columns: 1fr;
  }

  .preview-advanced-content {
    display: grid;
  }

  .hero-product-modal {
    width: min(80%, 420px);
  }

  .preview-modal-footer,
  .table-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .task-table-head,
  .task-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .task-actions {
    padding-top: 8px;
  }
}

/* =========================================================
   FLUXDOCK HERO LANDING - PRODUCT MOCKUP
   ========================================================= */

.hero-landing {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: calc(100vh - 86px);
  padding: 38px 0 72px;
  overflow: hidden;
}

.hero-landing::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 56vw;
  height: 56vw;
  border-radius: 999px;
  pointer-events: none;
}

.hero-landing::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -18%;
  width: 68vw;
  height: 44vw;
  border-radius: 999px;
  filter: blur(34px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1720px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 31, 0.26);
  background:
    linear-gradient(90deg, rgba(255, 138, 31, 0.08), rgba(139, 92, 246, 0.08)),
    rgba(255, 255, 255, 0.025);
  color: #ffd8b5;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0 34px rgba(255, 138, 31, 0.08);
}

.hero-badge span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a1f, #b36bff);
  box-shadow: 0 0 20px rgba(255, 138, 31, 0.8);
}

.hero-content h1 {
    margin-top: 28px;
    max-width: 720px;
    color: #f6f7ff;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-size: clamp(3.8rem, 2.3vw, 7.2rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-weight: 600;
    text-wrap: balance;
}

.hero-content h1 .gradient-word {
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(90deg, #ff8a1f 0%, #ffb14d 32%, #d96cff 68%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 28px rgba(255, 138, 31, 0.22),
    0 0 60px rgba(139, 92, 246, 0.18);
}

.hero-subtitle {
  margin-top: 28px;
  max-width: 620px;
  color: #d7dcef;
  font-size: clamp(1.08rem, 1.25vw, 1.32rem);
  line-height: 1.62;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 190px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  font-size: 1.08rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-primary {
  color: #000000;
  background: linear-gradient(135deg, #f39e29 0%, #ff8719 42%, #a66cff 100%);
  box-shadow: 0 22px 42px rgba(255, 138, 31, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.hero-btn-secondary {
  color: #f4f6ff;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
}

.hero-source-title {
  margin-top: 36px;
  color: #8f97b8;
  font-size: 0.95rem;
}

.hero-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding-right: 55px;
}

.source-chip {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border-radius: 13px;
  color: #edf1ff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.095);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.source-chip i {
  width: 16px;
  text-align: center;
  font-size: 0.95rem;
  color: #d6dcf5;
}

.source-chip.youtube i {
  color: #ff3131;
}

.source-chip.instagram i {
  color: #ff9f59;
}

.source-chip.twitch i {
  color: #a970ff;
}

.source-chip.tiktok i {
  color: #ffffff;
}

.source-chip.facebook i {
  color: #5f9dff;
}

.source-chip.vimeo i {
  color: #57c7ff;
}

.source-chip.stream i {
  color: #ffb14d;
}

.source-chip.more i {
  color: #c58dff;
}

.hero-benefits {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 799px;
}

.hero-benefits > div {
  min-width: 0;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-benefits > div:first-child {
  border-left-color: transparent;
  padding-left: 0;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 16px;
  color: #ffb14d;
  background: rgba(255, 138, 31, 0.09);
  border: 1px solid rgba(255, 138, 31, 0.16);
  box-shadow: 0 0 28px rgba(255, 138, 31, 0.08);
}

.benefit-icon .icon {
  width: 18px;
  height: 18px;
}

.benefit-icon.purple {
  color: #c8b5ff;
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.18);
}

.benefit-icon.orange {
  color: #ffb14d;
}

.hero-benefits strong {
  display: block;
  color: #ffe1bb;
  font-size: 1rem;
  line-height: 1.35;
}

.hero-benefits p {
  margin-top: 8px;
  color: #9ea7c8;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-width: 0;
  height: clamp(680px, 52vw, 900px);
}

.hero-window {
  position: relative;
  width: min(1180px, 68vw);
  height: clamp(700px, 54vw, 920px);
  overflow: visible;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.hero-window::before {
  content: "";
  position: absolute;

  z-index: 0;
}

.hero-window::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 72%;
  height: 42%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 138, 31, 0.28), transparent 70%),
    radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.2), transparent 65%);
  filter: blur(38px);
  z-index: 0;
}

.hero-shot-frame {
  position: absolute;
  padding: 1px;
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(139, 92, 246, 0.95),
      rgba(255, 138, 31, 0.75) 48%,
      rgba(255, 255, 255, 0.12)
    );
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.72),
    0 0 70px rgba(139, 92, 246, 0.12),
    0 0 70px rgba(255, 138, 31, 0.08);
  transform-style: preserve-3d;
}

.hero-shot-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.22), transparent 48%),
    radial-gradient(circle at 90% 85%, rgba(255, 138, 31, 0.18), transparent 50%);
  filter: blur(24px);
  z-index: -1;
  opacity: 0.9;
}

.hero-shot-frame-main {
  left: -11%;
  top: 4%;
  width: 84%;
  z-index: 1;
  transform:
    rotateX(5deg)
    rotateY(-8deg)
    rotateZ(-1.4deg)
    translateZ(0);
  transform-origin: center;
}

.hero-shot-frame-modal {
  right: 18%;
  bottom: 0%;
  width: 58%;
  z-index: 3;
  transform:
    rotateX(2deg)
    rotateY(-4deg)
    rotateZ(0.2deg)
    translateZ(80px);
  transform-origin: center;
}

.hero-app-shot,
.hero-modal-shot {
  position: static;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 27px;
  background: #080910;
  object-fit: contain;
}

.hero-app-shot {
  opacity: 0.86;
  filter: contrast(1.08) brightness(0.88) saturate(1.05);
}

.hero-modal-shot {
  opacity: 0.98;
  filter: contrast(1.08) brightness(0.96) saturate(1.08);
}

.hero-shot-frame-main::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 24%, transparent 72%, rgba(255, 138, 31, 0.08));
  pointer-events: none;
}

.hero-shot-frame-modal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.14), transparent 28%, transparent 70%, rgba(139, 92, 246, 0.1));
  pointer-events: none;
}

@media (max-width: 1280px) {
  .hero-inner {
    width: min(100% - 48px, 1180px);
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 820px;
  }

  .hero-visual {
    height: 720px;
  }

  .hero-window {
    width: 100%;
  }

  .hero-shot-frame-main {
    left: 0;
    top: 7%;
    width: 96%;
  }

  .hero-shot-frame-modal {
    right: 2%;
    bottom: 5%;
    width: 70%;
  }
}

@media (max-width: 860px) {
  .hero-landing {
    padding: 24px 0 54px;
  }

  .hero-inner {
    width: min(100% - 24px, 760px);
  }

  .hero-content {
    text-align: center;
  }

  .hero-badge {
    margin-inline: auto;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    width: 100%;
    justify-content: center;
  }

  .hero-source-title {
    text-align: center;
  }

  .hero-sources {
    justify-content: center;
    padding-right: 0;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    margin-top: 42px;
    text-align: center;
  }

  .hero-benefits > div {
    padding-left: 0;
    border-left: 0;
  }

  .benefit-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    height: auto;
  }

  .hero-window {
    position: relative;
    width: 100%;
    height: auto;
    right: auto;
    padding-bottom: 28px;
  }

  .hero-app-shot,
  .hero-modal-shot {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: 14px auto;
  }

  .hero-modal-shot {
    width: calc(100% - 44px);
  }

  .hero-shot-frame-main {
    width: 100%;
    top: 4%;
    transform: rotateX(3deg) rotateY(-4deg) rotateZ(-1deg);
  }

  .hero-shot-frame-modal {
    width: 82%;
    right: 1%;
    bottom: 4%;
    transform: rotateX(1deg) rotateY(-2deg) rotateZ(0deg);
  }
}

@media (max-width: 560px) {
  .hero-inner {
    width: min(100% - 20px, 760px);
  }

  .hero-sources {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    padding-right: 0;
  }

  .source-chip {
    justify-content: center;
    padding: 0 10px;
    min-width: 0;
    font-size: 0.9rem;
  }

  .hero-content h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .section-heading h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    line-height: 1.08;
  }

  .hero-window {
    border-radius: 22px;
  }

  .hero-app-shot,
  .hero-modal-shot {
    border-radius: 18px;
  }

  .hero-window {
    height: auto;
    display: grid;
    gap: 14px;
    perspective: none;
  }

  .hero-window::before,
  .hero-window::after,
  .hero-shot-frame::before {
    display: none;
  }

  .hero-shot-frame-main,
  .hero-shot-frame-modal {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .hero-app-shot,
  .hero-modal-shot {
    border-radius: 18px;
  }

  .hero-shot-frame {
    border-radius: 19px;
  }
}
