@import url("https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@400,500,700,900&display=swap");

:root {
  --bg: #050b16;
  --bg-2: #08111f;
  --bg-3: #0c1627;

  --panel: rgba(11, 19, 34, 0.90);
  --panel-soft: rgba(13, 23, 40, 0.76);
  --panel-2: rgba(8, 15, 28, 0.96);

  --border: rgba(146, 173, 225, 0.11);
  --border-strong: rgba(146, 173, 225, 0.22);

  --text: #f7f9fd;
  --muted: #a6b4c9;
  --muted-2: #7f92af;

  --primary: #7d8cff;
  --accent: #ad73ff;
  --success: #21d39b;
  --warning: #ffbe5c;
  --danger: #ff6666;
  --cyan: #52d2ff;

  --shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1560px;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

  --heading-font: "Clash Display", "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body-font: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.6;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(125, 140, 255, 0.24), transparent 18%),
    radial-gradient(circle at 78% 12%, rgba(173, 115, 255, 0.18), transparent 22%),
    radial-gradient(circle at 50% 0%, rgba(82, 210, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #060d19 0%, #08111f 24%, #070e19 48%, #050b16 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,0.04));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 6%, rgba(125, 140, 255, 0.10), transparent 28%),
    radial-gradient(circle at 52% 16%, rgba(173, 115, 255, 0.08), transparent 24%);
  animation: ambientShift 18s ease-in-out infinite alternate;
}

@keyframes ambientShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 12px, 0) scale(1.03);
    opacity: 0.92;
  }
}

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

button {
  font: inherit;
}

.container {
  width: min(100% - 24px, var(--container));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(6, 11, 20, 0.76);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font) !important;
  font-weight: 600 !important;
 
  flex-shrink: 0;
  transition: transform .22s ease, filter .22s ease;
}

.brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 16px rgba(125, 140, 255, 0.18));
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #6e7cff 50%, #ad73ff 100%);
  display: grid;
  place-items: center;
  font-family: var(--heading-font) !important;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(104, 116, 255, 0.32);
  transition: transform .22s ease, box-shadow .22s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(104, 116, 255, 0.38);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  position: relative;
  font-family: var(--heading-font) !important;
  font-weight: 600 !important;
 
  transition: color .2s ease, transform .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 14px rgba(125, 140, 255, 0.28);
  transition: width .22s ease;
}

.nav-links a:hover {
  color: white;
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  padding: 10px 14px;
  border-radius: 999px;
  color: #dbe7ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(125, 140, 255, 0.10);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--heading-font) !important;
  font-weight: 600 !important;
 
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.14) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .6s ease;
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(130%);
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #6e7cff 52%, #ad73ff 100%);
  box-shadow: 0 18px 34px rgba(104, 116, 255, 0.24);
}

.btn-primary:hover {
  box-shadow:
    0 20px 40px rgba(104, 116, 255, 0.30),
    0 0 24px rgba(125, 140, 255, 0.20);
}

.btn-secondary {
  color: white;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 18px rgba(125, 140, 255, 0.10);
}

.btn-ghost {
  color: var(--muted);
  background: transparent;
  border-color: rgba(255,255,255,0.10);
}

.btn-ghost:hover {
  color: white;
  border-color: rgba(255,255,255,0.16);
}

.section {
  position: relative;
  padding: 92px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.008) 100%);
  opacity: 0.35;
}

.section-intro {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 38px;
}

.section-title {
  margin: 16px 0 14px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.03;
 
  font-family: var(--heading-font) !important;
  font-weight: 700 !important;
}

.section-title .accent {
  color: var(--accent);
}

.section-desc {
  margin: 0 auto;
  max-width: 820px;
  font-size: 18px;
  color: var(--muted);
}

.hero {
  position: relative;
  padding: 74px 0 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 32% 6%, rgba(125, 140, 255, 0.14), transparent 28%),
    radial-gradient(circle at 68% 12%, rgba(173, 115, 255, 0.11), transparent 26%);
  opacity: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 38px;
  align-items: center;
}

.hero-copy {
  animation: heroFadeUp .85s ease both;
}

.hero-panel {
  animation: heroFadeRight .95s ease both;
  animation-delay: .08s;
}

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

@keyframes heroFadeRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.93;
 
  max-width: 860px;
  font-family: var(--heading-font) !important;
  font-weight: 700 !important;
}

.hero-copy p {
  margin: 0 0 28px;
  max-width: 740px;
  font-size: 18px;
  color: var(--muted);
}

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

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

.stat-card {
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.015)),
    linear-gradient(180deg, rgba(14, 25, 44, 0.96), rgba(8, 15, 28, 0.96));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 24px;
  margin-bottom: 5px;
  font-family: var(--heading-font) !important;
  font-weight: 700;
 
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  position: relative;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    linear-gradient(135deg, rgba(125, 140, 255, 0.08), rgba(173, 115, 255, 0.04));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(82, 210, 255, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  right: -90px;
  top: -110px;
  background: radial-gradient(circle, rgba(125, 140, 255, 0.28), transparent 58%);
  pointer-events: none;
  z-index: 0;
}

.window {
  position: relative;
  background: linear-gradient(180deg, rgba(7, 13, 25, 0.98), rgba(6, 11, 21, 0.94));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.window-topbar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
  font-size: 12px;
  color: var(--muted-2);
  font-family: var(--mono);
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-body {
  padding: 20px;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 16px;
  align-items: center;
}

.flow-node,
.flow-core,
.flow-result {
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)),
    rgba(12, 22, 39, 0.90);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
}

.flow-node {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.flow-node-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  color: white;
  margin-bottom: 4px;
}

.flow-core {
  position: relative;
  min-height: 210px;
  border-color: rgba(125, 140, 255, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(125, 140, 255, 0.05),
    0 22px 52px rgba(0,0,0,0.26);
}

.flow-core-title {
  text-align: center;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  font-family: var(--heading-font) !important;
 
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.flow-step {
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.flow-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  background: rgba(255,255,255,0.08);
}

.flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #dce8ff;
}

.tag-red {
  color: #ff9891;
  background: rgba(255, 127, 122, 0.08);
  border-color: rgba(255, 127, 122, 0.18);
}

.tag-green {
  color: #7ef0c5;
  background: rgba(33, 211, 155, 0.08);
  border-color: rgba(33, 211, 155, 0.18);
}

.tag-blue {
  color: #8fd6ff;
  background: rgba(78, 203, 255, 0.08);
  border-color: rgba(78, 203, 255, 0.18);
}

.flow-result {
  min-height: 166px;
  border-left: 3px solid rgba(33, 211, 155, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.flow-arrow {
  position: relative;
}

.flow-arrow svg {
  width: 100%;
  height: 40px;
  overflow: visible;
}

.panel {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    linear-gradient(180deg, rgba(10, 18, 32, 0.97), rgba(6, 11, 20, 0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.panel-padding {
  padding: 28px;
}

.comparison-grid,
.capability-grid,
.problems-grid,
.production-grid,
.solutions-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

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

.compare-card {
  padding: 30px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    linear-gradient(180deg, rgba(10, 18, 32, 0.97), rgba(6, 11, 20, 0.98));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
}

.compare-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 28px;
 
  font-family: var(--heading-font) !important;
  font-weight: 700 !important;
}

.status-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
}

.status-good {
  background: rgba(33, 211, 155, 0.12);
  color: var(--success);
}

.status-bad {
  background: rgba(255, 102, 102, 0.12);
  color: var(--danger);
}

.compare-list {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.compare-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.compare-list span:first-child {
  width: 18px;
  flex-shrink: 0;
  display: inline-block;
  margin-top: 1px;
  font-weight: 800;
}

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

.capability-card,
.problem-card,
.production-card,
.solution-card,
.price-card,
.faq-item {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    linear-gradient(180deg, rgba(10, 18, 32, 0.97), rgba(6, 11, 20, 0.98));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.capability-card,
.problem-card,
.production-card,
.solution-card,
.price-card {
  padding: 26px;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 22px;
}

.capability-card h3,
.problem-card h3,
.production-card h3,
.solution-card h3,
.price-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
 
  font-family: var(--heading-font) !important;
  font-weight: 700 !important;
}

.capability-card p,
.problem-card p,
.production-card p,
.solution-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.problem-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 127, 122, 0.09);
  border: 1px solid rgba(255, 127, 122, 0.16);
  color: #ff9a93;
  font-size: 13px;
  font-weight: 700;
}

.problem-card p strong {
  color: #ff958e;
  font-weight: 700;
}

.problem-card p em {
  color: #4de7bf;
  font-style: normal;
  font-weight: 700;
}

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

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

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

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

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(125, 140, 255, 0.24);
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.price-chip {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: #dbe7ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.price-value {
  margin: 10px 0 8px;
  font-size: 42px;
  font-weight: 800;
 
  font-family: var(--heading-font) !important;
}

.price-value small {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.price-list {
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-list li span:first-child {
  color: var(--success);
  font-weight: 800;
}

.faq-wrap {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: white;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--heading-font) !important;
 
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 16px;
  display: none;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  flex-shrink: 0;
  font-weight: 800;
}

.cta-panel {
  padding: 40px 34px;
  text-align: center;
}

.cta-panel .section-title {
  margin-top: 12px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

footer {
  position: relative;
  padding: 28px 0 56px;
}

.footer-panel {
  padding: 28px;
}

.footer-grid {
  grid-template-columns: 1.3fr .8fr .8fr .9fr;
  align-items: start;
}

.footer-brand p,
.footer-col a,
.footer-col div {
  color: var(--muted);
  font-size: 15px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 15px;
  color: #f0f4ff;
  letter-spacing: .01em;
  font-family: var(--heading-font) !important;
  font-weight: 600;
}

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

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted-2);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.accent {
  color: var(--accent);
}

.success {
  color: var(--success);
}

.inline-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 12px;
  font-weight: 700;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 14, 25, 0.92);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .25s ease;
  backdrop-filter: blur(12px);
  color: white;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-2px);
  background: rgba(10, 17, 30, 0.97);
}

.scroll-top .scroll-ring {
  position: absolute;
  inset: 0;
  width: 52px;
  height: 52px;
}

.scroll-top .scroll-arrow {
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 2;
  color: white;
}

.scroll-track {
  fill: none;
  stroke: rgba(255,255,255,0.10);
  stroke-width: 2.5;
}

.scroll-progress {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 97.4;
  stroke-dashoffset: 97.4;
  transition: stroke-dashoffset .12s linear;
}

/* ===== Stable glow hover fix: no rotating/spilling border ===== */

.hero-panel,
.stat-card,
.compare-card,
.capability-card,
.problem-card,
.production-card,
.solution-card,
.price-card,
.faq-item,
.panel,
.footer-panel,
.window {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hero-panel > *,
.stat-card > *,
.compare-card > *,
.capability-card > *,
.problem-card > *,
.production-card > *,
.solution-card > *,
.price-card > *,
.faq-item > *,
.panel > *,
.footer-panel > *,
.window > * {
  position: relative;
  z-index: 2;
}

.hero-panel::before,
.stat-card::before,
.compare-card::before,
.capability-card::before,
.problem-card::before,
.production-card::before,
.solution-card::before,
.price-card::before,
.faq-item::before,
.panel::before,
.footer-panel::before,
.window::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(125, 140, 255, 0.00) 0%,
    rgba(125, 140, 255, 0.28) 22%,
    rgba(173, 115, 255, 0.24) 50%,
    rgba(82, 210, 255, 0.20) 78%,
    rgba(125, 140, 255, 0.00) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-panel::after,
.stat-card::after,
.compare-card::after,
.capability-card::after,
.problem-card::after,
.production-card::after,
.solution-card::after,
.price-card::after,
.faq-item::after,
.panel::after,
.footer-panel::after,
.window::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity .28s ease, box-shadow .28s ease;
  box-shadow:
    0 0 0 1px rgba(125, 140, 255, 0.10),
    0 0 24px rgba(125, 140, 255, 0.12),
    0 0 42px rgba(173, 115, 255, 0.08);
}

.hero-panel:hover::before,
.stat-card:hover::before,
.compare-card:hover::before,
.capability-card:hover::before,
.problem-card:hover::before,
.production-card:hover::before,
.solution-card:hover::before,
.price-card:hover::before,
.faq-item:hover::before,
.panel:hover::before,
.footer-panel:hover::before,
.window:hover::before {
  opacity: 1;
}

.hero-panel:hover::after,
.stat-card:hover::after,
.compare-card:hover::after,
.capability-card:hover::after,
.problem-card:hover::after,
.production-card:hover::after,
.solution-card:hover::after,
.price-card:hover::after,
.faq-item:hover::after,
.panel:hover::after,
.footer-panel:hover::after,
.window:hover::after {
  opacity: 1;
}

.hero-panel:hover,
.stat-card:hover,
.compare-card:hover,
.capability-card:hover,
.problem-card:hover,
.production-card:hover,
.solution-card:hover,
.price-card:hover,
.faq-item:hover,
.panel:hover,
.footer-panel:hover,
.window:hover {
  transform: translateY(-4px);
}

.price-card.featured:hover::after {
  box-shadow:
    0 0 0 1px rgba(125, 140, 255, 0.16),
    0 0 28px rgba(125, 140, 255, 0.16),
    0 0 52px rgba(173, 115, 255, 0.12);
}

/* reveal classes used by home.js */
.reveal-in,
.reveal-stagger {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease;
}

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

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

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .10s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .22s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .28s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .34s; }

body,
button,
input,
textarea,
select,
p,
li,
small,
.subtext,
.muted,
.eyebrow,
.meta {
  font-family: var(--body-font) !important;
}

h1, h2, h3, h4, h5, h6,
.brand,
.brand-mark,
.btn,
.hero-title,
.section-title,
.stat-value,
.cta-title,
.nav-links a {
  font-family: var(--heading-font) !important;
}

h1 {
   
  font-weight: 700 !important;
  line-height: 0.93;
}

h2 {
   
  font-weight: 700 !important;
  line-height: 1;
}

h3, h4 {
   
  font-weight: 650 !important;
}

h5, h6,
.section-kicker,
.eyebrow {
  letter-spacing: 0.025em !important;
  font-weight: 700 !important;
}

p,
li,
small,
.subtext,
.muted,
.meta {
 
  font-weight: 500;
}

@media (max-width: 1180px) {
  .hero-grid,
  .comparison-grid,
  .capability-grid,
  .solutions-grid,
  .pricing-grid,
  .footer-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid,
  .production-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .section {
    padding: 70px 0;
  }

  .hero {
    padding: 48px 0 28px;
  }

  .cta-actions,
  .hero-actions,
  .nav-actions {
    flex-wrap: wrap;
  }

  .scroll-top {
    right: 18px;
    bottom: 18px;
  }
}

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

  .flow-steps,
  .solutions-grid,
  .capability-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .window-body,
  .panel-padding,
  .compare-card,
  .capability-card,
  .problem-card,
  .production-card,
  .solution-card,
  .price-card,
  .footer-panel {
    padding: 20px;
  }
}

/* SEO landing pages */
.page-hero {
  padding: 110px 0 42px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  align-items: stretch;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dbe7ff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.page-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(125, 140, 255, 0.12);
}

.page-title {
  margin: 0 0 18px;
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.page-subtitle {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-side-panel {
  display: grid;
  gap: 16px;
}

.metric-list,
.simple-list,
.link-list {
  display: grid;
  gap: 12px;
}

.metric-card,
.bullet-card,
.link-card,
.faq-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12, 22, 39, 0.92), rgba(7, 13, 24, 0.98));
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
}

.metric-card strong,
.bullet-card strong,
.link-card strong,
.faq-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--heading-font);
  font-size: 1.05rem;
}

.metric-card p,
.bullet-card p,
.link-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
}

.content-grid-2,
.content-grid-3 {
  display: grid;
  gap: 18px;
}

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

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

.feature-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 23, 40, 0.84), rgba(7, 13, 24, 0.98));
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.feature-panel h2,
.feature-panel h3 {
  margin-top: 0;
}

.feature-panel p:last-child,
.feature-panel ul:last-child {
  margin-bottom: 0;
}

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

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.inline-links a {
  border-bottom: 1px solid rgba(125, 140, 255, 0.36);
  color: #dce5ff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted-2);
  font-size: 14px;
  margin-bottom: 18px;
}

.breadcrumbs a:hover,
.inline-links a:hover {
  color: #fff;
}

.page-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .page-hero-grid,
  .content-grid-2,
  .content-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .page-hero {
    padding-top: 92px;
  }
}
