:root {
  --ink: #f8fbff;
  --muted: #9fc0ee;
  --line: #263956;
  --soft: #101827;
  --mint: #68b8ff;
  --coral: #2f6df6;
  --amber: #73b7ff;
  --blue: #2f6df6;
  --violet: #5798ff;
  --night: #070d1d;
  --panel: #101827;
  --panel-2: #0d1424;
  --panel-3: #070c16;
  --app-text: #f8fbff;
  --app-muted: #9fc0ee;
  --app-border: #2a3d5b;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #070d1d 0%, #0b1222 48%, #070d1d 100%);
  letter-spacing: 0;
  padding-bottom: 84px;
}

a {
  text-decoration: none;
}

.navbar {
  min-height: 72px;
}

.navbar-glass {
  border-bottom: 1px solid rgba(42, 61, 91, 0.9);
  background: rgba(7, 13, 29, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.navbar-brand,
.navbar .nav-link {
  color: var(--app-text);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--mint);
}

.navbar-toggler {
  border-color: var(--app-border);
  filter: invert(1);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 8px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #2f6df6, #2359d7);
  font-size: 0.86rem;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.24);
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 138px 0 78px;
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 109, 246, 0.22), transparent 32%),
    linear-gradient(115deg, rgba(7, 13, 29, 0.98), rgba(13, 20, 36, 0.96) 48%, rgba(13, 28, 61, 0.92)),
    var(--night);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.78) 55%, transparent 100%);
}

.hero-section::after {
  position: absolute;
  inset: auto -12% -38% -12%;
  z-index: -1;
  height: 58%;
  content: "";
  background:
    linear-gradient(95deg, rgba(47, 109, 246, 0.28), rgba(104, 184, 255, 0.18), rgba(47, 109, 246, 0.26));
  filter: blur(54px);
  opacity: 0.78;
  transform: skewY(-4deg);
}

.hero-section .display-4 {
  max-width: 680px;
  color: #ffffff;
  text-wrap: balance;
}

.hero-section .lead {
  max-width: 650px;
  color: var(--app-muted) !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(104, 184, 255, 0.3);
  border-radius: 999px;
  color: #cfe4ff;
  background: rgba(16, 24, 39, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 800;
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(104, 184, 255, 0.14);
}

.pulse-dot::after {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(104, 184, 255, 0.5);
  border-radius: inherit;
  animation: ping 1.8s ease-out infinite;
}

.conversion-note,
.checkout-note,
.hero-proof {
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 700;
}

.conversion-note {
  margin: -8px 0 22px;
}

.hero-proof {
  max-width: 620px;
  margin: -8px 0 22px;
  padding: 12px 14px;
  border: 1px solid rgba(104, 184, 255, 0.3);
  border-radius: 14px;
  background: rgba(47, 109, 246, 0.12);
}

.eyebrow {
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions .btn {
  border-radius: 12px;
  font-weight: 800;
}

.glow-button {
  border-color: transparent;
  background: #2f6df6;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(47, 109, 246, 0.34);
}

.glow-button:hover {
  color: #ffffff;
  transform: translateY(-2px);
  background: #235fe8;
  box-shadow: 0 24px 58px rgba(47, 109, 246, 0.44);
}

.ghost-button {
  border-color: rgba(104, 184, 255, 0.55);
  color: #ffffff;
  background: rgba(16, 24, 39, 0.68);
  backdrop-filter: blur(10px);
}

.ghost-button:hover {
  border-color: #68b8ff;
  color: #ffffff;
  background: rgba(47, 109, 246, 0.85);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-chips span {
  padding: 8px 12px;
  border: 1px solid rgba(104, 184, 255, 0.24);
  border-radius: 999px;
  color: #d7e8ff;
  background: rgba(16, 24, 39, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.hero-metrics div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(104, 184, 255, 0.24);
  border-radius: 14px;
  background: rgba(16, 24, 39, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: #ffffff;
  font-size: 1.16rem;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 8px;
  color: #cbd5e1;
  font-size: 0.86rem;
}

.product-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--app-border);
  border-radius: 22px;
  background: var(--panel);
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.36),
    0 0 0 10px rgba(47, 109, 246, 0.05);
  transform: perspective(1200px) rotateY(-7deg) rotateX(4deg);
  transform-origin: center;
  backdrop-filter: blur(18px);
}

.product-visual::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(104, 184, 255, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 68%, rgba(47, 109, 246, 0.1));
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 148px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(14px);
  animation: floaty 5.6s ease-in-out infinite;
}

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

.floating-card strong {
  font-size: 1.45rem;
  line-height: 1;
}

.floating-card span {
  margin-top: 5px;
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 700;
}

.floating-card-left {
  left: -22px;
  top: 90px;
}

.floating-card-right {
  right: -18px;
  bottom: 88px;
  animation-delay: -2.4s;
}

.visual-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid var(--app-border);
  background: #101827;
}

.visual-topbar > span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.visual-topbar > span:nth-child(1) {
  background: var(--coral);
}

.visual-topbar > span:nth-child(2) {
  background: var(--amber);
}

.visual-topbar > span:nth-child(3) {
  background: var(--mint);
}

.visual-search {
  width: min(260px, 45%);
  height: 26px;
  margin-left: auto;
  border-radius: 999px;
  background: #263956;
}

.visual-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 430px;
}

.visual-body aside {
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, #0f172a, #111827 44%, #172554);
}

.side-logo {
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--mint), #67e8f9);
  box-shadow: 0 14px 28px rgba(20, 184, 166, 0.22);
}

.side-item {
  display: block;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.side-item.active {
  background: #ffffff;
}

.side-item.short {
  width: 70%;
}

.visual-main {
  padding: 24px;
  background:
    linear-gradient(180deg, #101827, #0d1424);
}

.visual-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}

.bar {
  display: block;
  height: 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #2a3d5b;
}

.bar.wide {
  width: 210px;
}

.bar.medium {
  width: 138px;
}

.visual-heading button {
  min-width: 78px;
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.filter-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-strip span {
  height: 38px;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  background: #070c16;
}

.table-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0d1424;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 34px;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #d7e8ff;
  font-size: 0.92rem;
}

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

.table-row.head {
  min-height: 44px;
  color: #9fc0ee;
  background: #101827;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-live,
.badge-draft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  width: 68px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.badge-live {
  color: #0f766e;
  background: rgba(20, 184, 166, 0.14);
}

.badge-draft {
  color: #a16207;
  background: rgba(243, 179, 61, 0.18);
}

.dots {
  width: 24px;
  height: 6px;
  border-radius: 999px;
  background: #526782;
}

.code-card {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  color: #e5e7eb;
  background:
    linear-gradient(135deg, #020617, #111827 62%, #172554);
  font-size: 0.86rem;
  white-space: normal;
}

.deploy-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(20, 184, 166, 0.24);
  border-radius: 14px;
  background: rgba(20, 184, 166, 0.08);
}

.deploy-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #ffffff;
  background: #0f766e;
  font-weight: 900;
}

.deploy-row strong,
.deploy-row small {
  display: block;
}

.deploy-row strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.deploy-row small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.conversion-strip {
  padding: 30px 0 38px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #070d1d, #101827 55%, #0d1c3d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.conversion-strip .eyebrow {
  color: #68b8ff;
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr)) auto;
  gap: 24px;
  align-items: center;
}

.brand-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.brand-rail span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid var(--app-border);
  border-radius: 12px;
  color: #d7e8ff;
  background: rgba(16, 24, 39, 0.86);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
}

.conversion-grid h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.08;
  font-weight: 800;
}

.conversion-point {
  min-width: 0;
  padding-left: 20px;
  border-left: 1px solid var(--app-border);
}

.conversion-point strong,
.conversion-point span {
  display: block;
}

.conversion-point strong {
  margin-bottom: 6px;
  color: #ffffff;
  font-weight: 800;
}

.conversion-point span {
  color: var(--app-muted);
  line-height: 1.45;
}

.conversion-button {
  white-space: nowrap;
}

.section-pad {
  padding: 86px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
}

.media-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 109, 246, 0.14), transparent 34%),
    linear-gradient(180deg, #0b1222, #070d1d);
}

.media-section .eyebrow,
.gallery-section .eyebrow,
.feature-catalog .eyebrow,
#features > .container > .row .eyebrow,
#pricing .eyebrow,
#faq .eyebrow,
#workflow .eyebrow {
  color: var(--blue);
}

.text-secondary {
  color: var(--app-muted) !important;
}

.media-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.media-points span {
  padding: 9px 12px;
  border: 1px solid rgba(104, 184, 255, 0.26);
  border-radius: 999px;
  color: #cfe4ff;
  background: rgba(47, 109, 246, 0.12);
  font-size: 0.88rem;
  font-weight: 800;
}

.video-frame {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--app-border);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(16, 24, 39, 0.95), rgba(13, 20, 36, 0.9));
  box-shadow: 0 34px 86px rgba(15, 23, 42, 0.16);
}

.video-frame::before {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 260px;
  height: 260px;
  content: "";
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.24);
  filter: blur(34px);
}

.video-lightbox {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
}

.video-frame video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #0f172a;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  padding-left: 5px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.video-lightbox:hover .play-button {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.07);
}

.video-caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 8px 4px;
}

.video-caption strong,
.video-caption span {
  display: block;
}

.video-caption strong {
  font-weight: 900;
}

.video-caption span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-section {
  background:
    linear-gradient(135deg, #070d1d, #101827 46%, #0d1c3d);
}

.gallery-section .section-title,
.gallery-section .text-secondary {
  color: #ffffff !important;
}

.gallery-section .text-secondary {
  opacity: 0.78;
}

.gallery-section .btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.gallery-section .btn-outline-dark:hover {
  border-color: #ffffff;
  color: #0f172a;
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #020617;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.gallery-item > a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 260ms ease, opacity 260ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.82));
  pointer-events: none;
}

.gallery-item::before {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 7px 10px;
  content: "View";
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.58);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 900;
  pointer-events: none;
}

.gallery-item:hover img {
  opacity: 0.86;
  transform: scale(1.08);
}

.gallery-item:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.gslide-description {
  background: rgba(2, 6, 23, 0.92) !important;
}

.gslide-title,
.gslide-desc {
  color: #ffffff !important;
}

.gallery-item figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: #ffffff;
  pointer-events: none;
}

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

.gallery-item figcaption strong {
  margin-bottom: 5px;
  font-size: 1.05rem;
  font-weight: 900;
}

.gallery-item figcaption span {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.screenshot-item {
  border-color: rgba(104, 184, 255, 0.22);
  background: #030711;
}

.screenshot-item img {
  object-fit: cover;
  object-position: top left;
  filter: saturate(1.08) contrast(1.02);
}

.product-capabilities {
  background:
    radial-gradient(circle at 90% 8%, rgba(47, 109, 246, 0.18), transparent 30%),
    linear-gradient(180deg, #070d1d 0%, #0d1424 100%);
}

.product-capabilities .section-title {
  color: #ffffff;
}

.product-capabilities .text-secondary {
  color: var(--app-muted) !important;
}

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

.capability-card {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--app-border);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.98), rgba(13, 20, 36, 0.94));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.capability-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.capability-card:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, var(--coral), var(--blue));
}

.capability-card:nth-child(3n)::before {
  background: linear-gradient(90deg, var(--amber), var(--mint));
}

.capability-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
  font-size: 0.86rem;
  font-weight: 900;
}

.capability-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.capability-card p {
  margin: 0;
  color: var(--app-muted);
  font-weight: 650;
  line-height: 1.55;
}

.feature-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 26px;
  border: 1px solid var(--app-border);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(104, 184, 255, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: var(--blue);
}

.feature-card:hover {
  border-color: rgba(104, 184, 255, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.12);
}

.tenant-highlight-card {
  border-color: rgba(104, 184, 255, 0.72);
  box-shadow: 0 24px 58px rgba(47, 109, 246, 0.18);
}

.tenant-highlight-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  content: "Tenant";
  border: 1px solid rgba(104, 184, 255, 0.5);
  border-radius: 999px;
  color: #d7e8ff;
  background: rgba(47, 109, 246, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.feature-card.tenant-highlight-card::after {
  right: 70px;
}

.accent-mint::before,
.accent-mint .feature-icon {
  background: linear-gradient(135deg, #0f766e, var(--mint));
}

.accent-coral::before,
.accent-coral .feature-icon {
  background: linear-gradient(135deg, #e11d48, var(--coral));
}

.accent-blue::before,
.accent-blue .feature-icon {
  background: linear-gradient(135deg, #1d4ed8, var(--blue));
}

.accent-amber::before,
.accent-amber .feature-icon {
  background: linear-gradient(135deg, #b45309, var(--amber));
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 800;
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.tech-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(104, 184, 255, 0.28);
  border-radius: 10px;
  color: #ffffff;
  background: #0d1c3d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.sql-logo {
  background: linear-gradient(135deg, #174a85, #2f6df6);
}

.dotnet-logo,
.blazor-logo,
.csharp-logo {
  background: linear-gradient(135deg, #512bd4, #2f6df6);
}

.swagger-logo {
  background: linear-gradient(135deg, #173f2d, #49a55d);
}

.razor-logo {
  background: linear-gradient(135deg, #5b2bbf, #68b8ff);
}

.relation-logo {
  background: linear-gradient(135deg, #0d3b66, #2f6df6);
}

.shield-logo {
  background: linear-gradient(135deg, #174a85, #68b8ff);
}

.test-logo {
  background: linear-gradient(135deg, #0f766e, #2f6df6);
}

.feature-card h3,
.timeline-step h3,
.pricing-card h3,
.value-panel h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

.feature-card p,
.timeline-step p,
.value-item span {
  color: var(--muted);
}

.feature-catalog {
  padding: 32px;
  border: 1px solid var(--app-border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.9), rgba(13, 20, 36, 0.98));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.catalog-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.catalog-header h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.1;
  font-weight: 800;
}

.catalog-group {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--app-border);
  border-radius: 14px;
  background: #0d1424;
}

.catalog-group h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.02rem;
  font-weight: 800;
}

.mini-tech-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 7px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
}

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

.catalog-group li {
  position: relative;
  padding-left: 24px;
  color: #cfe4ff;
  font-size: 0.94rem;
  line-height: 1.45;
}

.catalog-group li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  content: "✓";
  color: #0f766e;
  font-weight: 900;
}

.muted-section {
  background:
    linear-gradient(180deg, #0b1222, #070d1d);
}

.quality-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(47, 109, 246, 0.16), transparent 30%),
    linear-gradient(180deg, #070d1d, #0b1222);
}

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

.quality-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--app-border);
  border-radius: 16px;
  background: rgba(16, 24, 39, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.quality-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  font-weight: 900;
}

.quality-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 900;
}

.quality-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-section {
  background: #070d1d;
}

.proof-card {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--app-border);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.proof-card h2,
.proof-card h3 {
  font-weight: 800;
}

.proof-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.06;
}

.proof-card h3 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.dark-proof {
  color: #ffffff;
  background:
    linear-gradient(135deg, #070d1d, #101827 54%, #0d1c3d);
}

.dark-proof p {
  color: var(--app-muted);
}

.dark-proof .eyebrow {
  color: var(--mint);
}

.proof-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--coral);
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--app-border);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.timeline-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: #ffffff;
  background: var(--coral);
  font-weight: 800;
}

.pricing-card,
.value-panel {
  height: 100%;
  padding: 32px;
  border: 1px solid var(--app-border);
  border-radius: 18px;
  background: var(--panel);
}

.pricing-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.28);
}

.pricing-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, #2f6df6, #68b8ff, #2f6df6);
}

.price-ribbon {
  margin: 6px 0 24px;
  padding: 10px 12px;
  border: 1px solid rgba(104, 184, 255, 0.28);
  border-radius: 12px;
  color: #cfe4ff;
  background: rgba(47, 109, 246, 0.12);
  font-size: 0.88rem;
  font-weight: 900;
}

.popular {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0f766e;
  background: rgba(20, 184, 166, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin: 22px 0 12px;
  color: var(--muted);
  font-size: 1.05rem;
}

.price span {
  color: transparent;
  background: linear-gradient(135deg, #ffffff, #68b8ff);
  background-clip: text;
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
}

.checkout-note {
  margin: 14px 0 0;
  text-align: center;
}

.license-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.license-list li {
  position: relative;
  padding-left: 30px;
  color: #cfe4ff;
}

.license-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: #0f766e;
  font-weight: 900;
}

.license-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

.license-form label {
  display: grid;
  gap: 7px;
  color: #cfe4ff;
  font-size: 0.9rem;
  font-weight: 800;
}

.license-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(104, 184, 255, 0.28);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(5, 9, 20, 0.78);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.license-form input:focus {
  border-color: #68b8ff;
  background: rgba(5, 9, 20, 0.94);
  box-shadow: 0 0 0 4px rgba(104, 184, 255, 0.16);
}

.license-form button:disabled {
  cursor: wait;
  opacity: 0.76;
}

.license-form-status {
  min-height: 22px;
  margin: 0;
  color: #cbd5e1;
  font-size: 0.92rem;
  text-align: center;
}

.license-form-status.is-success {
  color: #6ee7b7;
}

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

.value-panel {
  background:
    linear-gradient(135deg, #070d1d, #101827 48%, #0d1c3d);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.26);
}

.value-panel h3,
.value-item strong {
  color: #ffffff;
}

.value-item {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

.value-item strong {
  margin-bottom: 6px;
}

.value-item span {
  color: #cbd5e1;
}

.accordion-button {
  font-weight: 800;
  color: #ffffff;
  background: #101827;
}

.accordion-item {
  border-color: var(--app-border);
  color: #d7e8ff;
  background: #101827;
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background: #0d1c3d;
  box-shadow: inset 0 -1px 0 var(--app-border);
}

.accordion-body {
  color: var(--app-muted);
  background: #0d1424;
}

.footer {
  padding: 30px 0;
  color: #cbd5e1;
  background:
    linear-gradient(135deg, #050914, #070d1d);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a {
  color: #ffffff;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 1040;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: min(560px, calc(100vw - 48px));
  padding: 14px;
  border: 1px solid var(--app-border);
  border-radius: 16px;
  background: rgba(16, 24, 39, 0.94);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

@keyframes ping {
  0% {
    opacity: 0.9;
    transform: scale(0.7);
  }

  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.sticky-cta div {
  min-width: 0;
}

.sticky-cta strong,
.sticky-cta span {
  display: block;
}

.sticky-cta strong {
  font-weight: 800;
}

.sticky-cta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.btn-dark {
  border-color: #2f6df6;
  background: #2f6df6;
}

.btn-dark:hover,
.btn-dark:focus {
  border-color: #235fe8;
  background: #235fe8;
}

.btn-outline-dark {
  border-color: #2f6df6;
  color: #d7e8ff;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  border-color: #2f6df6;
  color: #ffffff;
  background: #2f6df6;
}

.sticky-cta .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 118px;
  }

  .product-visual {
    transform: none;
  }

  .floating-card {
    display: none;
  }

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

  .catalog-header {
    align-items: start;
    flex-direction: column;
  }

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

  .brand-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .conversion-point {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .conversion-button {
    justify-self: start;
  }

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

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

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

  .gallery-large,
  .gallery-wide {
    grid-column: span 2;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 64px 0;
  }

  .hero-section {
    padding-bottom: 58px;
  }

  .hero-badge {
    font-size: 0.82rem;
  }

  .brand-rail {
    grid-template-columns: 1fr;
  }

  .feature-catalog {
    padding: 20px;
  }

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

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

  .video-caption {
    align-items: start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .visual-body {
    grid-template-columns: 1fr;
  }

  .visual-body aside {
    display: none;
  }

  .visual-main {
    padding: 18px;
  }

  .filter-strip {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 14px;
  }

  .table-row.head {
    display: none;
  }

  .bar.wide {
    width: 160px;
  }

  .price span {
    font-size: 3.2rem;
  }

  .license-form-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .sticky-cta span {
    display: none;
  }
}

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

/* sql2solution app palette overrides */
:root {
  --bs-body-color: #f8fbff;
  --bs-body-bg: #070d1d;
  --bs-border-color: #2a3d5b;
  --bs-secondary-color: #9fc0ee;
  --bs-accordion-border-color: #2a3d5b;
  --bs-accordion-active-color: #ffffff;
  --bs-accordion-active-bg: #0d1c3d;
}

.section-pad,
#pricing,
#faq,
#features {
  background-color: #070d1d;
}

.feature-card,
.catalog-group,
.quality-card,
.proof-card,
.timeline-step,
.pricing-card,
.accordion-item {
  color: #f8fbff;
  background-color: #101827;
  border-color: #2a3d5b;
}

.catalog-group h4,
.feature-card h3,
.quality-card h3,
.proof-card h2,
.proof-card h3,
.timeline-step h3,
.pricing-card h3,
.value-panel h3,
.section-title {
  color: #ffffff;
}

.catalog-group li,
.license-list li,
.table-row,
.deploy-row strong,
.price,
.checkout-note {
  color: #d7e8ff;
}

.feature-card p,
.quality-card p,
.proof-card p,
.timeline-step p,
.value-item span,
.video-caption span,
.deploy-row small,
.sticky-cta span {
  color: #9fc0ee;
}

.popular,
.badge-live,
.badge-draft {
  color: #d7e8ff;
  background: rgba(47, 109, 246, 0.2);
}

.play-button {
  color: #ffffff;
  background: #2f6df6;
}

.video-lightbox:hover .play-button {
  background: #235fe8;
}

.gallery-section .btn-outline-dark:hover,
.gallery-section .btn-outline-dark:focus {
  border-color: #2f6df6;
  color: #ffffff;
  background: #2f6df6;
}
