:root {
  --bg: #070816;
  --bg-soft: #11122d;
  --panel: rgba(16, 18, 49, 0.76);
  --panel-strong: #15173a;
  --text: #f5f7ff;
  --muted: #adb1d7;
  --line: rgba(122, 128, 214, 0.2);
  --accent: #46c3f2;
  --accent-2: #6b63ff;
  --accent-3: #322b7e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(70, 195, 242, 0.2), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(107, 99, 255, 0.18), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(50, 43, 126, 0.18), transparent 30%),
    linear-gradient(180deg, #050614 0%, #090a1e 56%, #060713 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: 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: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 85%);
  opacity: 0.35;
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  gap: 12px;
  background:
    radial-gradient(circle at 25% 20%, rgba(70, 195, 242, 0.28), transparent 34%),
    radial-gradient(circle at 80% 30%, rgba(107, 99, 255, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(5, 8, 20, 0.96), rgba(8, 12, 26, 0.98));
  backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.site-loader-core {
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.loader-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
}

.loader-orb.orb-a {
  width: 220px;
  height: 220px;
  left: 14%;
  top: 20%;
  background: radial-gradient(circle at 35% 35%, rgba(70, 195, 242, 0.65), rgba(70, 195, 242, 0.02));
  animation: loaderFloat 4.2s ease-in-out infinite;
}

.loader-orb.orb-b {
  width: 170px;
  height: 170px;
  right: 15%;
  top: 32%;
  background: radial-gradient(circle at 35% 35%, rgba(107, 99, 255, 0.62), rgba(107, 99, 255, 0.02));
  animation: loaderFloat 5.1s ease-in-out infinite;
  animation-delay: -1.2s;
}

.loader-orb.orb-c {
  width: 190px;
  height: 190px;
  left: 44%;
  bottom: 16%;
  background: radial-gradient(circle at 35% 35%, rgba(53, 208, 186, 0.58), rgba(53, 208, 186, 0.02));
  animation: loaderFloat 4.7s ease-in-out infinite;
  animation-delay: -2.1s;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.loader-ring.ring-a {
  border-top-color: rgba(70, 195, 242, 0.95);
  border-right-color: rgba(70, 195, 242, 0.45);
  animation: loaderSpin 1.25s linear infinite;
}

.loader-ring.ring-c {
  inset: -12px;
  border-width: 1px;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-left-color: rgba(255, 255, 255, 0.1);
  animation: loaderSpin 2.8s linear infinite;
}

.loader-ring.ring-b {
  inset: 14px;
  border-bottom-color: rgba(107, 99, 255, 0.95);
  border-left-color: rgba(107, 99, 255, 0.45);
  animation: loaderSpinReverse 1s linear infinite;
}

.loader-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #35d0ba, #46c3f2);
  box-shadow: 0 0 0 10px rgba(70, 195, 242, 0.16);
  animation: loaderPulse 1s ease-in-out infinite;
}

.site-loader-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d3def0;
  animation: loaderTextPulse 1.6s ease-in-out infinite;
  z-index: 2;
}

.site-loader-tip {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 500;
  color: #f3f7ff;
  letter-spacing: -0.01em;
  line-height: 1;
  text-shadow: 0 10px 30px rgba(70, 195, 242, 0.2);
  animation: loaderTipPulse 1.1s ease-in-out infinite;
  z-index: 2;
}

.site-loader-progress {
  width: min(320px, calc(100vw - 54px));
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  z-index: 2;
}

.site-loader-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6b63ff, #46c3f2, #35d0ba);
  box-shadow: 0 0 24px rgba(70, 195, 242, 0.35);
  transition: width 220ms ease;
}

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

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

.page {
  position: relative;
  overflow: clip;
}

.scroll-video-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.scroll-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 22, 0.58), rgba(8, 13, 28, 0.72));
}

.scroll-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 320ms ease;
}

.scroll-bg-video.is-swapping {
  opacity: 0.3;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 8, 22, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0;
  gap: 20px;
}

.module-menu {
  position: relative;
  margin: 0;
}

.module-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.app-menu {
  margin-right: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 16px;
  flex: 0 0 auto;
  justify-content: flex-start;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text);
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-link:hover {
  transform: translateY(-1px);
  background: rgba(70, 195, 242, 0.1);
  border-color: rgba(70, 195, 242, 0.22);
}

/* Keep nav link text light on hover (bundle global "a:hover { color: black }" overrides it otherwise) */
.nav-link:hover,
.nav-link:focus,
.nav-link:active {
  color: var(--text);
}

.module-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.module-toggle:hover {
  transform: translateY(-1px);
  background: rgba(70, 195, 242, 0.1);
  border-color: rgba(70, 195, 242, 0.24);
}

.module-toggle-icon {
  font-size: 0.8rem;
}

.module-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(8, 18, 32, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.module-menu.is-open .module-dropdown,
.module-menu:hover .module-dropdown,
.module-menu:focus-within .module-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.module-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: #d7e3f1;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease;
}

.module-dropdown a:hover {
  color: var(--text);
  background: rgba(70, 195, 242, 0.12);
}

.app-dropdown {
  min-width: 260px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo-image {
  display: block;
  width: clamp(150px, 18vw, 220px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  min-height: 32px;
  min-width: 42px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.lang-btn:hover {
  background: rgba(70, 195, 242, 0.1);
}

.lang-btn.is-active {
  background: rgba(70, 195, 242, 0.18);
  border-color: rgba(70, 195, 242, 0.38);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

/* Keep button labels light on hover (bundle global "a:hover { color: black }" overrides it otherwise) */
.button:hover,
.button:focus,
.button:active {
  color: var(--text);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  color: #f7f8ff;
  box-shadow: 0 18px 36px rgba(70, 195, 242, 0.18);
}

.button-secondary {
  border-color: rgba(122, 128, 214, 0.24);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

/* Frappe/Bootstrap modal contrast fix: keep text readable on white modal panels */
.modal-content {
  color: #171717;
}

.modal-header,
.modal-body,
.modal-footer {
  color: #171717;
}

.modal-title,
.modal-body p,
.modal-body div,
.modal-body span,
.modal-body label {
  color: #171717;
}

.modal-body .text-muted,
.modal-footer .text-muted {
  color: #525252 !important;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 72px 0 36px;
}

.app-features {
  padding-top: 18px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.app-card {
  padding: 22px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.app-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(53, 208, 186, 0.08);
  border: 1px solid rgba(53, 208, 186, 0.14);
  color: #dffaf5;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.app-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.app-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
  color: #d7e3f1;
}

.app-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.app-download-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.app-download-anchors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #d1deee;
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(70, 195, 242, 0.16);
}

h1,
h2,
h3,
.brand {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 22px;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 60ch;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #d8e3f1;
  font-size: 0.95rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-item:last-child {
  border-right: none;
  padding-right: 0;
}

.meta-chip {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 0 5px rgba(107, 99, 255, 0.14);
}

.visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.95;
  animation: float 8s ease-in-out infinite;
}

.orb.one {
  width: 170px;
  height: 170px;
  top: 24px;
  right: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(70, 195, 242, 0.95), rgba(70, 195, 242, 0.08));
}

.orb.two {
  width: 120px;
  height: 120px;
  bottom: 100px;
  left: 4px;
  background: radial-gradient(circle at 30% 30%, rgba(107, 99, 255, 0.92), rgba(107, 99, 255, 0.06));
  animation-delay: -2s;
}

.orb.three {
  width: 100px;
  height: 100px;
  bottom: 26px;
  right: 110px;
  background: radial-gradient(circle at 30% 30%, rgba(50, 43, 126, 0.92), rgba(50, 43, 126, 0.06));
  animation-delay: -4s;
}

.dashboard {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 34px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateY(-8deg) rotateX(6deg);
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), transparent 30%, transparent 70%, rgba(255,255,255,0.08));
  pointer-events: none;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.panel {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(9, 18, 33, 0.96), rgba(16, 28, 48, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.hero-card {
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(70, 195, 242, 0.12), rgba(107, 99, 255, 0.05));
  border: 1px solid rgba(70, 195, 242, 0.16);
}

.hero-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.hero-card p,
.stat-label,
.small-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.stat {
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-value {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.activity {
  display: grid;
  gap: 12px;
}

.activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #dbe6f3;
  font-size: 0.94rem;
}

.activity-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.activity-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(53, 208, 186, 0.12);
  color: #89f0e0;
  font-size: 0.82rem;
  white-space: nowrap;
}

.logos {
  padding: 30px 0 18px;
}

.logos-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

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

.logo-card {
  display: grid;
  place-items: center;
  min-height: 76px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  color: #c7d3e3;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section {
  padding: 84px 0;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 12ch;
}

.section-head p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

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

.feature,
.story,
.pricing,
.faq-item {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.feature {
  padding: 24px;
  min-height: 240px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(53, 208, 186, 0.2), rgba(107, 176, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.feature h3,
.story h3,
.pricing h3,
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.feature p,
.story p,
.pricing p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: #d7e3f1;
}

.feature-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.story {
  padding: 26px;
  display: grid;
  gap: 18px;
}

.story-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.story-kpi {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(53, 208, 186, 0.08);
  border: 1px solid rgba(53, 208, 186, 0.14);
  color: #dffaf5;
  font-weight: 700;
  white-space: nowrap;
}

.story-quote {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #edf4fb;
  margin: 0;
}

.story-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-left: -10px;
  border: 2px solid #0f1f33;
  font-weight: 700;
  color: #081320;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar.a {
  background: #35d0ba;
}

.avatar.b {
  background: #f4b860;
}

.avatar.c {
  background: #6bb0ff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.pricing {
  padding: 26px;
}

.pricing.highlight {
  background: linear-gradient(180deg, rgba(53, 208, 186, 0.14), rgba(255, 255, 255, 0.05));
  border-color: rgba(53, 208, 186, 0.18);
  transform: translateY(-8px);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 10px;
}

.price strong {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--muted);
}

.pricing .button {
  margin-top: 20px;
  width: 100%;
}

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

.faq-item {
  padding: 22px 24px;
}

.testimonials {
  padding-top: 72px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 8px 0;
}

.testimonial-slider::before,
.testimonial-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 92px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 19, 35, 0.95), rgba(10, 19, 35, 0));
}

.testimonial-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10, 19, 35, 0.95), rgba(10, 19, 35, 0));
}

.testimonial-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: testimonialSlide 34s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: min(380px, calc(100vw - 64px));
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(6, 16, 29, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.testimonial-comment {
  margin: 0 0 18px;
  color: #e8f1fb;
  font-size: 1.02rem;
  line-height: 1.8;
}

.testimonial-person {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
}

.testimonial-person img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
}

.testimonial-person strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cta {
  margin: 18px 0 96px;
}

.cta-inner {
  position: relative;
  border-radius: 34px;
  padding: 42px;
  background: linear-gradient(135deg, rgba(53, 208, 186, 0.18), rgba(13, 26, 45, 0.96) 55%, rgba(244, 184, 96, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.cta-inner::after {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(107, 176, 255, 0.2), transparent 65%);
  pointer-events: none;
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.cta h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 55ch;
}

.module-page {
  padding: 54px 0 96px;
}

.module-hero {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 36px 0 22px;
  overflow: hidden;
  border: 0;
  min-height: 430px;
}

.module-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 24, 0.45), rgba(8, 13, 28, 0.82));
  z-index: 1;
}

.module-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.module-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.module-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #d1deee;
  font-size: 0.92rem;
}

.module-hero h1 {
  max-width: 12ch;
}

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

.module-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.module-stats-inline {
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.module-stats-inline .module-stat {
  position: relative;
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: rgba(8, 18, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.module-stats-inline .module-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #46c3f2, #35d0ba);
}

.module-stats-inline .module-stat strong {
  font-size: 1.55rem;
  line-height: 1.05;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.module-stats-inline .module-stat span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a9bfd6;
}

.module-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.module-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.module-section {
  padding: 34px 0 0;
}

.module-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.module-section p {
  color: var(--muted);
  line-height: 1.8;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.module-card {
  padding: 20px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}
.app-page .app-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-top: 22px;
}

.app-page .app-showcase-primary,
.app-page .app-showcase-side,
.app-page .app-download-card {
  padding: 20px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.app-page .app-showcase-copy h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.app-page .app-showcase-copy p {
  margin: 0;
}

.app-page .app-showcase-side {
  display: grid;
  align-content: start;
  gap: 14px;
}

.app-page .app-showcase-side h3 {
  margin: 0;
  font-size: 1.2rem;
}

.app-page .app-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.app-page .app-feature-list li {
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d7e3f1;
}

.app-page .app-feature-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.app-page .app-cta-note {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(70, 195, 242, 0.26);
  background: rgba(70, 195, 242, 0.08);
}

.app-page .app-previews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 22px;
}

.app-page .app-video-card .video-preview {
  min-height: 260px;
}

.app-page .app-platform-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.app-page .app-platform-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.app-page .app-action-group {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.app-page .button.store-action {
  padding: 4px 8px;
  min-height: 56px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.app-page .button .store-badge-img {
  display: block;
  width: min(210px, 100%);
  height: auto;
}

.app-page .app-download-card {
  display: grid;
  align-content: start;
}

.app-page .platform-logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  flex: 0 0 auto;
}

.app-page .platform-logo svg {
  width: 24px;
  height: 24px;
}

.app-page .platform-logo-apple {
  background: linear-gradient(145deg, rgba(70, 195, 242, 0.12), rgba(107, 99, 255, 0.06));
}

.app-page .platform-logo-windows {
  background: linear-gradient(145deg, rgba(107, 99, 255, 0.16), rgba(70, 195, 242, 0.08));
}

.app-page .platform-logo-android {
  background: linear-gradient(145deg, rgba(70, 195, 242, 0.16), rgba(107, 99, 255, 0.08));
}

.app-page .platform-logo-download {
  background: rgba(255, 255, 255, 0.04);
}

.module-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.module-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
  color: #d7e3f1;
}

.module-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.media-card {
  padding: 18px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(53, 208, 186, 0.16), rgba(107, 176, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 14px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 16, 29, 0.72);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.video-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 31, 51, 0.96), rgba(7, 17, 31, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 14px;
}

.video-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 25%, rgba(53, 208, 186, 0.22), transparent 30%), radial-gradient(circle at 70% 65%, rgba(244, 184, 96, 0.16), transparent 28%);
}

.play-button {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(53, 208, 186, 0.16);
  border: 1px solid rgba(53, 208, 186, 0.28);
  color: var(--text);
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
}

.video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0b1526;
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 14px;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0b1526;
  cursor: pointer;
}

.media-video-row {
  margin-top: 22px;
}

.media-video-row .media-card {
  padding: 20px;
}

.media-video-row .video-frame {
  aspect-ratio: 16 / 9;
}

.screenshot-stack {
  display: grid;
  gap: 12px;
}

.screenshot-item {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.screenshot-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 132px;
  max-height: 160px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 12, 24, 0.7);
}

.screenshot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-item strong {
  display: block;
  margin-bottom: 4px;
}

.app-page .app-screens-card {
  display: grid;
  gap: 14px;
}

.app-page .app-clips-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.app-page .app-clips-head h3 {
  margin: 0;
}

.app-page .app-clips-controls {
  display: inline-flex;
  gap: 8px;
}

.app-page .clip-nav {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.app-page .clip-nav:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(70, 195, 242, 0.35);
  background: rgba(70, 195, 242, 0.12);
}

.app-page .clip-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.app-page .preview-clips-track {
  --clip-card-height: 294px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: var(--clip-card-height);
  gap: 12px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc((var(--clip-card-height) * 2) + 12px + 4px);
  padding: 4px 6px 6px 2px;
  -webkit-overflow-scrolling: touch;
  align-items: start;
}

.app-page .preview-clips-track::-webkit-scrollbar {
  width: 8px;
}

.app-page .preview-clips-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.app-page .preview-clip {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  height: var(--clip-card-height);
  overflow: hidden;
}

.app-page .preview-clip:hover,
.app-page .preview-clip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(70, 195, 242, 0.3);
  background: rgba(70, 195, 242, 0.08);
  outline: none;
}

.app-page .preview-clip-content {
  display: grid;
  gap: 5px;
  align-content: start;
}

.app-page .preview-clip .preview-description,
.app-page .preview-clip .preview-feature-clip {
  display: none;
}

.app-page .preview-open-hint {
  font-size: 0.78rem;
  font-weight: 700;
  color: #8fdaf4;
  letter-spacing: 0.01em;
}

.app-page .screenshot-item {
  padding: 10px;
  gap: 10px;
}

.app-page .screenshot-thumb {
  width: 140px;
  height: 140px;
  aspect-ratio: 1 / 1;
  min-height: 140px;
  max-height: 140px;
  margin-inline: auto;
}

.app-page .preview-short-description {
  margin: 0;
  color: #c7d5eb;
  font-size: 0.84rem;
  line-height: 1.35;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.app-page .preview-subtitle,
.app-page .preview-description {
  margin: 0;
  color: #d2dcf0;
  line-height: 1.35;
}

.app-page .preview-subtitle {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.app-page .preview-description {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.app-page .preview-feature-clip {
  margin: 0;
}

.app-page .preview-feature-clip summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.87rem;
  color: #e6ecff;
  list-style: none;
}

.app-page .preview-feature-clip summary::-webkit-details-marker {
  display: none;
}

.app-page .preview-feature-clip summary::after {
  content: " +";
  color: var(--accent);
}

.app-page .preview-feature-clip[open] summary::after {
  content: " -";
}

.app-page .preview-feature-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.app-page .preview-feature-list li {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.79rem;
  line-height: 1.15;
  color: #e3ebfb;
  border: 1px solid rgba(70, 195, 242, 0.22);
  background: rgba(70, 195, 242, 0.1);
}

.app-page .preview-track-note {
  margin: 0;
  color: #b9c5db;
  font-size: 0.92rem;
}

.app-page .preview-dialog {
  width: min(1080px, calc(100vw - 28px));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px;
  background: rgba(8, 14, 28, 0.98);
  color: var(--text);
}

.app-page .preview-dialog::backdrop {
  background: rgba(3, 7, 14, 0.82);
  backdrop-filter: blur(4px);
}

.app-page .preview-dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: start;
}

.app-page .preview-dialog-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  min-height: 320px;
}

.app-page .preview-dialog-media img {
  width: 100%;
  height: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #060d1b;
}

.app-page .preview-dialog-content {
  display: grid;
  gap: 10px;
}

.app-page .preview-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-page .preview-counter {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(70, 195, 242, 0.24);
  background: rgba(70, 195, 242, 0.1);
  color: #e6f5ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.app-page .preview-dialog-nav {
  display: inline-flex;
  gap: 8px;
}

.app-page .preview-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.app-page .preview-dialog-content h3 {
  margin: 4px 0 0;
}

.app-page .preview-dialog-content h4 {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: #dbe8ff;
}

.module-footer-cta {
  margin-top: 34px;
}


.help-page main {
  padding: 28px 0 56px;
}

.help-page .help-hero {
  padding: 34px 0 18px;
}

.help-page .help-hero h1 {
  max-width: 16ch;
}

.about-page main {
  padding: 28px 0 56px;
}

.about-page .about-hero {
  padding: 34px 0 18px;
}

.about-page .about-hero h1 {
  max-width: 14ch;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.about-card,
.about-member,
.about-value {
  padding: 24px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.about-card h2,
.about-member h3,
.about-value h3 {
  margin: 0 0 10px;
}

.about-card p,
.about-member p,
.about-value p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-team {
  margin-top: 34px;
}

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

.about-avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
  font-weight: 800;
  color: #081320;
}

.about-avatar.a {
  background: #35d0ba;
}

.about-avatar.b {
  background: #f4b860;
}

.about-avatar.c {
  background: #6bb0ff;
}

.about-role {
  margin: 0 0 10px;
  color: #d8e5f4;
  font-weight: 700;
}

.about-values {
  margin-top: 34px;
}

.about-values-grid {
  margin-top: 16px;
}

.status-page main {
  padding: 28px 0 56px;
}

.status-page .status-hero {
  padding: 34px 0 18px;
}

.status-page .status-hero h1 {
  max-width: 15ch;
}

.status-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.status-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.status-card h2 {
  margin: 0;
  font-size: 1rem;
}

.status-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-card strong {
  font-size: 1.05rem;
  font-family: "Space Grotesk", sans-serif;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.status-card-ok .status-dot {
  background: #35d0ba;
  box-shadow: 0 0 0 5px rgba(53, 208, 186, 0.14);
}

.status-card-warn .status-dot {
  background: #f4b860;
  box-shadow: 0 0 0 5px rgba(244, 184, 96, 0.14);
}

.status-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 20px;
  margin-top: 24px;
}

.status-panel {
  padding: 24px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.status-panel h2 {
  margin: 0 0 14px;
}

.status-table-wrap {
  overflow-x: auto;
}

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

.status-table th,
.status-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.status-table th {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bdd1e7;
}

.status-table td {
  color: #d8e4f2;
  font-size: 0.95rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge.resolved {
  background: rgba(53, 208, 186, 0.14);
  color: #8ef0e2;
  border: 1px solid rgba(53, 208, 186, 0.26);
}

.badge.scheduled {
  background: rgba(107, 176, 255, 0.14);
  color: #bedcff;
  border: 1px solid rgba(107, 176, 255, 0.25);
}

.maintenance-item {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}

.maintenance-item strong {
  display: block;
  margin-bottom: 6px;
}

.maintenance-item p {
  margin: 0 0 10px;
  color: var(--muted);
}

.status-contact {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.status-contact h3 {
  margin: 0 0 10px;
}

.status-contact p {
  margin: 0 0 12px;
  color: var(--muted);
}

.status-locations {
  margin-top: 34px;
}

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

.location-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

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

.location-head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.location-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zone-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.zone-ok {
  background: rgba(53, 208, 186, 0.1);
  color: #8ef0e2;
  border-color: rgba(53, 208, 186, 0.28);
}

.zone-warn {
  background: rgba(244, 184, 96, 0.12);
  color: #ffd9a2;
  border-color: rgba(244, 184, 96, 0.3);
}

.help-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.help-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.help-card h2,
.help-card h3 {
  margin: 0 0 10px;
}

.help-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

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

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

.form-row-wide {
  grid-column: 1 / -1;
}

.form-row label {
  font-weight: 700;
  color: var(--text);
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.support-form textarea {
  min-height: 140px;
  resize: vertical;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: #b8c2d5;
}

.support-form select option {
  color: #0c1728;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  outline: none;
  border-color: rgba(70, 195, 242, 0.7);
  box-shadow: 0 0 0 3px rgba(70, 195, 242, 0.18);
}

.form-actions {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  line-height: 1.7;
  color: var(--muted);
}

.contact-list strong {
  color: var(--text);
}

.map-card {
  margin-top: 20px;
}

.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 260px;
  background: rgba(255, 255, 255, 0.04);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}


.cta-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.login-page main {
  padding: 44px 0 64px;
}

.login-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.login-showcase,
.login-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.25);
}

.login-showcase {
  position: relative;
  overflow: hidden;
  padding: 36px;
  background:
    radial-gradient(circle at 90% 16%, rgba(70, 195, 242, 0.2), transparent 38%),
    radial-gradient(circle at 16% 86%, rgba(107, 99, 255, 0.2), transparent 42%),
    linear-gradient(160deg, rgba(14, 18, 44, 0.95), rgba(10, 16, 34, 0.95));
}

.login-showcase::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -150px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(53, 208, 186, 0.2), rgba(53, 208, 186, 0.01));
  pointer-events: none;
}

.login-showcase h1 {
  max-width: 13ch;
}

.login-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.login-pillar {
  position: relative;
  padding: 16px 16px 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.login-pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #46c3f2, #35d0ba);
}

.login-pillar h3 {
  margin: 0 0 7px;
  font-size: 1.06rem;
}

.login-pillar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.login-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #d9e8fa;
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #35d0ba, #46c3f2);
  box-shadow: 0 0 0 4px rgba(70, 195, 242, 0.14);
}

.login-card {
  padding: 30px;
}

.login-card h2 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.login-card > p {
  margin: 0 0 18px;
  color: var(--muted);
}

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

.login-form label {
  font-weight: 700;
  color: #eaf1ff;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.login-form input {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.login-form input::placeholder {
  color: #a7b6cc;
  font-weight: 500;
}

.login-form input:focus {
  outline: none;
  border-color: rgba(70, 195, 242, 0.7);
  box-shadow: 0 0 0 4px rgba(70, 195, 242, 0.16);
  background: linear-gradient(180deg, rgba(70, 195, 242, 0.08), rgba(255, 255, 255, 0.03));
}

.login-form .form-row {
  gap: 10px;
}

.login-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.remember-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d8e3f1;
  font-weight: 600;
}

.remember-toggle input {
  width: 18px;
  height: 18px;
  accent-color: #46c3f2;
}

.login-meta-row a {
  color: #b9d4ff;
  font-weight: 700;
}

.forgot-link {
  border: 0;
  background: transparent;
  color: #b9d4ff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.forgot-link:hover {
  color: #d8eaff;
  text-decoration: underline;
}

.login-submit {
  width: 100%;
}

.login-divider {
  position: relative;
  margin: 18px 0 14px;
  text-align: center;
}

.login-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.login-divider span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  background: rgba(16, 18, 49, 0.94);
  color: #a9b7cc;
  font-size: 0.86rem;
}

.login-alt-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.login-note {
  margin: 16px 0 0;
  color: var(--muted);
  text-align: center;
}

.login-note a {
  color: #cbe5ff;
  font-weight: 700;
}

.login-delete-note {
  margin-top: 8px;
  font-size: 0.92rem;
}

.reset-dialog {
  width: min(520px, calc(100vw - 28px));
  border: 0;
  padding: 0;
  border-radius: 24px;
  background: transparent;
  color: var(--text);
}

.reset-dialog::backdrop {
  background: rgba(3, 6, 18, 0.68);
  backdrop-filter: blur(6px);
}

.reset-dialog-panel {
  margin: 0;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 86% 12%, rgba(70, 195, 242, 0.16), transparent 36%),
    linear-gradient(165deg, rgba(14, 18, 44, 0.98), rgba(10, 14, 30, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  display: grid;
  gap: 14px;
}

.reset-dialog-panel h2 {
  margin: 0;
  font-size: 1.5rem;
}

.reset-dialog-panel > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.reset-dialog-panel input {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.reset-dialog-panel input:focus {
  outline: none;
  border-color: rgba(70, 195, 242, 0.7);
  box-shadow: 0 0 0 4px rgba(70, 195, 242, 0.16);
}

.reset-success {
  margin: 0;
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(53, 208, 186, 0.12);
  color: #a5f7ea;
  border: 1px solid rgba(53, 208, 186, 0.28);
  font-weight: 700;
}

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

.deletion-page main {
  padding: 44px 0 64px;
}

.deletion-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.deletion-form {
  margin-top: 4px;
}

/* Screen-reader-only proxy input inside custom selects. Must win over the
   generic .support-form input sizing (width:100% / min-height:46px). */
.support-form .sr-field-proxy,
.custom-select .sr-field-proxy {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0 !important;
  font-size: 0;
  box-shadow: none !important;
}

.custom-select {
  position: relative;
}

/* Neutralize Bootstrap's `.custom-select` widget styles that collide with this
   container (Bootstrap forces height:38px + padding 6px 28px 6px 12px, which
   made the trigger overflow and the menu overlap it). */
.custom-select[data-custom-select] {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  appearance: none;
}

.custom-select-trigger {
  display: block;
  width: 100%;
  min-height: 46px;
  padding: 12px 44px 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='rgba(214,231,255,0.95)' d='M7 8.3a1 1 0 0 1-.7-.3L.9 2.6A1 1 0 0 1 2.3 1.2L7 5.9l4.7-4.7a1 1 0 1 1 1.4 1.4L7.7 8a1 1 0 0 1-.7.3Z'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: #edf5ff;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  line-height: 24px;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.custom-select-trigger:focus,
.custom-select.is-open .custom-select-trigger {
  outline: none;
  border-color: rgba(70, 195, 242, 0.72);
  box-shadow: 0 0 0 4px rgba(70, 195, 242, 0.16);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 5;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 84% 6%, rgba(70, 195, 242, 0.12), transparent 34%),
    linear-gradient(165deg, rgba(10, 16, 34, 0.98), rgba(9, 13, 29, 0.98));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-select-option {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  color: #dce9fa;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 0 12px;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.custom-select-option:hover,
.custom-select-option:focus {
  outline: none;
  color: #f2f8ff;
  border-color: rgba(70, 195, 242, 0.3);
  background: rgba(70, 195, 242, 0.12);
}

.custom-select-option.is-selected {
  color: #e8fef9;
  border-color: rgba(53, 208, 186, 0.35);
  background: rgba(53, 208, 186, 0.14);
}

.consent-row {
  margin-top: -2px;
}

.consent-check {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #d8e3f1;
  line-height: 1.45;
  font-weight: 600;
}

.consent-check span {
  display: block;
  margin-top: 0;
}

.consent-check input {
  margin-top: 0;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-content: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.consent-check input::before {
  content: "";
  width: 11px;
  height: 11px;
  transform: scale(0);
  transition: transform 140ms ease;
  clip-path: polygon(14% 52%, 0 67%, 38% 100%, 100% 22%, 85% 8%, 37% 72%);
  background: #071521;
}

.consent-check input:checked {
  border-color: rgba(53, 208, 186, 0.8);
  background: linear-gradient(135deg, #35d0ba, #46c3f2);
  box-shadow: 0 0 0 3px rgba(70, 195, 242, 0.16);
}

.consent-check input:checked::before {
  transform: scale(1);
}

.consent-check input:focus-visible {
  outline: none;
  border-color: rgba(70, 195, 242, 0.72);
  box-shadow: 0 0 0 4px rgba(70, 195, 242, 0.16);
}

.deletion-success {
  margin: 0;
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(53, 208, 186, 0.12);
  color: #a5f7ea;
  border: 1px solid rgba(53, 208, 186, 0.28);
  font-weight: 700;
}

.deletion-steps {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.deletion-note {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.deletion-note h3 {
  margin: 0 0 8px;
}

.deletion-note p {
  margin: 0 0 14px;
  color: var(--muted);
}

/* Frappe web form section styled to match Erpuse theme */
.page_content .web-form-container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.page_content .web-form-head {
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 10%, rgba(70, 195, 242, 0.15), transparent 34%),
    linear-gradient(165deg, rgba(14, 18, 44, 0.96), rgba(10, 14, 30, 0.96));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.25);
  padding: 24px;
}

.page_content .web-form-header .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page_content .web-form-title h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--text);
}

.page_content .indicator-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.page_content .indicator-pill.orange {
  color: #ffc287;
  border-color: rgba(255, 175, 92, 0.36);
  background: rgba(255, 175, 92, 0.14);
}

.page_content .web-form-introduction {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.page_content .web-form-introduction a {
  color: #cbe5ff;
  font-weight: 700;
}

.page_content .web-form {
  margin-top: 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.page_content .web-form-body {
  padding: 24px;
}

.page_content .web-form-wrapper {
  min-height: 240px;
}

.page_content .web-form-skeleton .box-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.page_content .web-form-skeleton .box-container {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.page_content .web-form-skeleton .box-container.col-sm-6 {
  grid-column: span 1;
}

.page_content .web-form-skeleton .box-container:not(.col-sm-6) {
  grid-column: 1 / -1;
}

.page_content .web-form-skeleton .box {
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(170, 224, 255, 0.22), rgba(255, 255, 255, 0.04));
  background-size: 240% 100%;
  animation: webFormSkeletonPulse 1.45s ease-in-out infinite;
}

.page_content .web-form-skeleton .box-label {
  width: 36%;
  height: 12px;
  margin-bottom: 12px;
}

.page_content .web-form-skeleton .box-area {
  width: 100%;
  height: 48px;
}

.page_content .web-form-skeleton .box-group:nth-child(2) .box-area,
.page_content .web-form-skeleton .box-group:nth-child(4) .box-area {
  height: 56px;
}

.page_content .web-form-skeleton .box-group:nth-child(1) .box-container:nth-child(2) .box,
.page_content .web-form-skeleton .box-group:nth-child(3) .box-container:nth-child(2) .box,
.page_content .web-form-skeleton .box-group:nth-child(4) .box-container:nth-child(2) .box {
  animation-delay: 120ms;
}

.page_content .web-form-footer {
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 26, 0.56);
}

.page_content .web-form-footer .web-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page_content .web-form-footer .left-area,
.page_content .web-form-footer .center-area,
.page_content .web-form-footer .right-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page_content .web-form-footer .right-area {
  margin-left: auto;
}

.page_content .web-form-footer .btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(122, 128, 214, 0.24);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
  padding: 0 16px;
}

.page_content .web-form-footer .btn:hover {
  transform: translateY(-1px);
}

.page_content .web-form-footer .btn-primary {
  border: 0;
  color: #f7f8ff;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  box-shadow: 0 14px 32px rgba(70, 195, 242, 0.22);
}

.page_content .success-page {
  margin-top: 16px;
  border-radius: 24px;
  border: 1px solid rgba(53, 208, 186, 0.32);
  background:
    radial-gradient(circle at 88% 10%, rgba(53, 208, 186, 0.12), transparent 40%),
    linear-gradient(165deg, rgba(8, 24, 28, 0.92), rgba(8, 16, 30, 0.92));
  padding: 26px 22px;
}

.page_content .success-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page_content .success-icon {
  width: 32px;
  height: 32px;
  color: #72f0d2;
}

.page_content .success-title {
  margin: 0;
  color: #e3fff7;
  font-family: "Space Grotesk", sans-serif;
}

.page_content .success-message,
.page_content .success_url_message p {
  color: #c2e9df;
  line-height: 1.7;
}

.page_content .success_url_message a,
.page_content .success_url_message .time {
  color: #8ef6de;
  font-weight: 800;
}

.page_content .web-list-container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.page_content .web-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 88% 12%, rgba(70, 195, 242, 0.14), transparent 38%),
    linear-gradient(165deg, rgba(14, 18, 44, 0.9), rgba(10, 14, 30, 0.9));
}

.page_content .web-list-title h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3.8vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 20ch;
  color: var(--text);
}

.page_content .web-list-actions {
  display: inline-flex;
  gap: 10px;
}

.page_content .web-list-actions .btn,
.page_content .web-list-actions .button-new {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  color: #f7f8ff;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  box-shadow: 0 14px 32px rgba(70, 195, 242, 0.22);
}

.page_content .web-list-actions .btn:hover,
.page_content .web-list-actions .button-new:hover {
  transform: translateY(-1px);
}

.page_content .web-list-filters {
  min-height: 64px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 26, 0.5);
}

.page_content .web-list-table {
  overflow-x: auto;
  padding: 10px 0;
}

.page_content .web-list-table table {
  width: 100%;
  border-collapse: collapse;
}

.page_content .web-list-table th,
.page_content .web-list-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7e3f1;
  vertical-align: middle;
}

.page_content .web-list-table th {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bdd1e7;
}

.page_content .web-list-table tr:hover td {
  background: rgba(70, 195, 242, 0.07);
}

.page_content .web-list-table a {
  color: #cbe5ff;
  font-weight: 700;
}

.page_content .web-list-footer {
  min-height: 62px;
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 26, 0.56);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page_content .web-list-footer .btn,
.page_content .web-list-footer button {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(122, 128, 214, 0.24);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
}

@keyframes webFormSkeletonPulse {
  from {
    background-position: 160% 50%;
  }
  to {
    background-position: -40% 50%;
  }
}

.footer {
  padding: 18px 0 40px;
  color: var(--muted);
  font-size: 0.94rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 1.8fr) auto;
  gap: 28px;
  align-items: start;
}

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

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-copy {
  margin: 0;
  max-width: 28ch;
  line-height: 1.7;
}

.footer-group {
  display: grid;
  gap: 10px;
}

.footer-group h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--text);
}

.footer-group a,
.footer-group span {
  line-height: 1.6;
}

.footer a {
  color: var(--muted);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--text);
  text-decoration: none;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.footer-social-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(70, 195, 242, 0.12);
  color: var(--accent);
  flex: 0 0 auto;
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
}

.footer-legal {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.reveal {
  animation: rise 700ms ease both;
}

.delay-1 {
  animation-delay: 100ms;
}

.delay-2 {
  animation-delay: 220ms;
}

.delay-3 {
  animation-delay: 340ms;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-16px) scale(1.04);
  }
}

@keyframes testimonialSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

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

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

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.78;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes loaderTextPulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.04);
  }
}

@keyframes loaderTipPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(2px) scale(0.99);
  }
  50% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-orb,
  .loader-ring,
  .loader-dot,
  .site-loader-text,
  .site-loader-tip {
    animation: none;
  }
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .topbar-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links {
  margin-left: 0;
  margin-right: 16px;
}

html[dir="rtl"] .nav-actions {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .module-dropdown {
  left: auto;
  right: 50%;
  transform: translateX(50%) translateY(8px);
}

html[dir="rtl"] .module-menu.is-open .module-dropdown,
html[dir="rtl"] .module-menu:hover .module-dropdown,
html[dir="rtl"] .module-menu:focus-within .module-dropdown {
  transform: translateX(50%) translateY(0);
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .hero-meta,
html[dir="rtl"] .module-actions,
html[dir="rtl"] .cta-actions,
html[dir="rtl"] .story-bottom,
html[dir="rtl"] .footer-social-link {
  flex-direction: row-reverse;
}

html[dir="rtl"] .meta-item {
  border-right: none;
  padding-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 18px;
}

html[dir="rtl"] .meta-item:last-child {
  border-left: none;
  padding-left: 0;
}

html[dir="rtl"] .section-head {
  flex-direction: row-reverse;
  align-items: end;
}

html[dir="rtl"] .status-table th,
html[dir="rtl"] .status-table td {
  text-align: right;
}

html[dir="rtl"] .footer-links,
html[dir="rtl"] .help-layout,
html[dir="rtl"] .status-layout,
html[dir="rtl"] .location-grid,
html[dir="rtl"] .about-team-grid,
html[dir="rtl"] .about-values-grid,
html[dir="rtl"] .module-grid,
html[dir="rtl"] .media-grid,
html[dir="rtl"] .app-showcase-grid,
html[dir="rtl"] .app-previews-layout,
html[dir="rtl"] .app-platform-columns,
html[dir="rtl"] .support-form {
  direction: rtl;
}

html[dir="rtl"] .login-shell,
html[dir="rtl"] .login-form,
html[dir="rtl"] .login-pillars,
html[dir="rtl"] .login-alt-actions {
  direction: rtl;
}

html[dir="rtl"] .deletion-layout,
html[dir="rtl"] .deletion-form {
  direction: rtl;
}

html[dir="rtl"] .page_content .web-form-header .title,
html[dir="rtl"] .page_content .web-form-footer .web-form-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .page_content .web-form-footer .right-area {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .page_content .web-list-header,
html[dir="rtl"] .page_content .web-list-footer {
  flex-direction: row-reverse;
}

html[dir="rtl"] .page_content .web-list-table th,
html[dir="rtl"] .page_content .web-list-table td {
  text-align: right;
}

html[dir="rtl"] .deletion-steps {
  padding-left: 0;
  padding-right: 18px;
}

html[dir="rtl"] .deletion-form select {
  padding: 12px 16px 12px 44px;
  background-position: left 16px center;
}

html[dir="rtl"] .custom-select-trigger {
  padding: 12px 16px 12px 44px;
  background-position: left 16px center;
  text-align: right;
}

html[dir="rtl"] .custom-select-option {
  text-align: right;
}

html[dir="rtl"] .login-meta-row {
  flex-direction: row-reverse;
}

html[dir="rtl"] .login-pillar {
  padding: 16px 18px 16px 16px;
}

html[dir="rtl"] .login-pillar::before {
  left: auto;
  right: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .cta-grid,
  .pricing-grid,
  .dashboard-grid,
  .grid-3,
  .faq-grid,
  .logo-row {
    grid-template-columns: 1fr 1fr;
  }

  .visual {
    min-height: 560px;
  }

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

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

  .footer-legal {
    text-align: center;
  }

  .section-head,
  .cta-grid {
    align-items: start;
  }

  .pricing.highlight {
    transform: none;
  }

  .app-grid,
  .app-download-anchors {
    grid-template-columns: 1fr 1fr;
  }

  .help-layout {
    grid-template-columns: 1fr;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .deletion-layout {
    grid-template-columns: 1fr;
  }

  .page_content .web-form-skeleton .box-group {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .status-overview,
  .location-grid,
  .about-team-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .status-layout {
    grid-template-columns: 1fr;
  }

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

  /* Picture and Screenshots side by side; video walkthrough sits in its own row below */
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-slider::before,
  .testimonial-slider::after {
    width: 56px;
  }

  .app-page .app-showcase-grid,
  .app-page .app-previews-layout,
  .app-page .app-platform-columns {
    grid-template-columns: 1fr;
  }
}

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

  .module-menu {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .module-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .module-dropdown {
    left: 0;
    min-width: 0;
    width: 100%;
    transform: translateY(8px);
  }

  .module-menu.is-open .module-dropdown,
  .module-menu:hover .module-dropdown,
  .module-menu:focus-within .module-dropdown {
    transform: translateY(0);
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .topbar-inner {
    flex-wrap: wrap;
  }

  .topbar-inner {
    padding: 14px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .app-grid,
  .app-download-anchors,
  .module-stats,
  .module-grid,
  .app-page .app-showcase-grid,
  .app-page .app-previews-layout,
  .app-page .app-platform-columns,
  .support-form {
    grid-template-columns: 1fr;
  }

  /* Picture and Screenshots side by side; video walkthrough sits in its own row below */
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .cta-grid,
  .pricing-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 20px;
  }

  .visual {
    min-height: 470px;
  }

  .dashboard {
    transform: none;
  }

  .cta-inner {
    padding: 30px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .meta-item {
    border-right: none;
    padding-right: 0;
  }

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

  /* Picture and Screenshots side by side; video walkthrough sits in its own row below */
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    width: min(340px, calc(100vw - 48px));
  }

  .screenshot-item {
    grid-template-columns: 1fr;
  }

  .app-page .preview-clips-track {
    --clip-card-height: 282px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: calc((var(--clip-card-height) * 2) + 12px + 4px);
  }

  .app-page .preview-dialog {
    width: min(1080px, calc(100vw - 16px));
    padding: 14px;
  }

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

  .app-page .preview-dialog-media {
    min-height: 220px;
  }

  .app-page .screenshot-thumb {
    width: 128px;
    height: 128px;
    min-height: 128px;
    max-height: 128px;
  }

  .login-card {
    padding: 24px;
  }

  .login-alt-actions {
    grid-template-columns: 1fr;
  }

  .login-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .page_content .web-form-body {
    padding: 16px;
  }

  .page_content .web-form-head {
    padding: 18px;
  }

  .page_content .web-form-footer .web-form-actions,
  .page_content .web-form-footer .right-area {
    flex-wrap: wrap;
  }

  .page_content .web-form-footer .btn {
    width: 100%;
  }

  .page_content .web-list-container {
    border-radius: 20px;
  }

  .page_content .web-list-header {
    padding: 16px;
  }

  .page_content .web-list-filters,
  .page_content .web-list-footer {
    padding: 12px 14px;
  }

  .page_content .web-list-actions,
  .page_content .web-list-actions .btn,
  .page_content .web-list-actions .button-new {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .app-page .preview-clips-track {
    --clip-card-height: 270px;
    grid-template-columns: 1fr;
    max-height: calc((var(--clip-card-height) * 2) + 12px + 4px);
  }

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

  .app-page .screenshot-thumb {
    width: 120px;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(var(--max), calc(100% - 22px));
  }

  .hero-actions,
  .nav-actions,
  .footer-inner {
    width: 100%;
  }

  .module-menu {
    order: 3;
  }

  .hero-actions .button,
  .nav-actions .button,
  .cta-actions .button,
  .footer-links {
    width: 100%;
  }

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

  .footer-legal {
    text-align: center;
  }

  .button {
    min-height: 50px;
  }

  h1 {
    max-width: 100%;
  }

  .visual {
    min-height: 420px;
  }

  .dashboard {
    padding: 12px;
  }

  .panel,
  .feature,
  .story,
  .pricing,
  .faq-item {
    padding: 18px;
  }

  .meta-item {
    width: 100%;
  }

  .hero-meta {
    gap: 12px;
  }

  .cta-inner {
    padding: 24px;
  }
}

/* ============================================================
   Request Demo page (request-demo-form component)
   ============================================================ */

.request-demo-page .help-hero {
  padding: 34px 0 18px;
}

.request-demo-page .help-hero h1 {
  max-width: 18ch;
}

.form-status {
  display: inline-block;
  margin-left: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-status.is-error {
  color: #ff8f8f;
}

.request-demo-success {
  text-align: center;
  padding: 28px 8px;
}

.request-demo-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #0c1728;
  background: linear-gradient(135deg, #40e0a0, #40b0e0);
  border-radius: 50%;
}

.request-demo-success-icon.is-pop {
  animation: request-demo-pop 0.45s ease;
}

@keyframes request-demo-pop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

.request-demo-success h2 {
  margin: 0 0 10px;
}

.request-demo-success p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 46ch;
  margin: 0 auto 22px;
}
