:root {
  --purple: #9647ff;
  --blue: #475cff;
  --bg: #111111;
  --card-bg: #1c1c1c;
  --card-2: #242424;
  --card-3: #2a2a2a;
  --text-hi: #ffffff;
  --text-mid: #a0a0a0;
  --text-lo: #b7b7b7;
  --gradient: linear-gradient(90deg, #9647ff 0%, #475cff 100%);
  --gradient-diag: linear-gradient(135deg, #9647ff 0%, #475cff 100%);
  --glass-fill: linear-gradient(144.5deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
  --border: rgba(255, 255, 255, 0.07);
  --border-bright: rgba(150, 71, 255, 0.3);
  --panel-w: 360px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text-hi);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.05;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-diag);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.nav-logo-text span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 0.1em;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text-hi);
}
.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-cta-ghost {
  color: var(--text-mid);
  border: 1px solid var(--border);
  padding: 9px 20px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}
.nav-cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.nav-cta {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  transition: border-color 0.2s;
}
.hamburger:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 1px;
  transition: all 0.25s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 199;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(20px);
  padding: 100px 60px 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-inner {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.mobile-menu-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu-links a:hover {
  color: var(--text-hi);
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-actions .nav-cta-ghost,
.mobile-menu-actions .nav-cta {
  justify-content: center;
  width: 100%;
  text-align: center;
}
@media (max-width: 1279px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .nav-right {
    display: none;
  }
}
@media (max-width: 768px) {
  .mobile-menu {
    padding: 100px 24px 40px;
  }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 60px 100px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
}
.blob-1 {
  width: 700px;
  height: 700px;
  background: #9647ff;
  top: -200px;
  left: -200px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 600px;
  height: 600px;
  background: #475cff;
  bottom: -150px;
  right: -150px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.04);
  }
  66% {
    transform: translate(-20px, 15px) scale(0.97);
  }
}
.hero-inner {
  max-width: 860px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(150, 71, 255, 0.1);
  border: 1px solid rgba(150, 71, 255, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: #c49aff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 82px);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-sub strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(150, 71, 255, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border);
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s ease forwards;
}
.d1 {
  animation-delay: 0.05s;
}
.d2 {
  animation-delay: 0.15s;
}
.d3 {
  animation-delay: 0.25s;
}
.d4 {
  animation-delay: 0.4s;
}
.d5 {
  animation-delay: 0.55s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* VALUE STRIP */
.value-strip {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 60px;
  position: relative;
  z-index: 1;
}
.value-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.vs-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  flex-shrink: 0;
}
.vs-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.15;
  margin-bottom: 4px;
}
.vs-num sup {
  font-size: 18px;
}
.vs-label {
  font-size: 11px;
  color: var(--text-mid);
  text-align: center;
  white-space: nowrap;
}
.vs-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
.vs-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 32px;
  flex: 1;
}
.vs-usp {
  font-size: 11px;
  color: var(--text-mid);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .value-strip {
    padding: 24px;
  }
  .value-strip-inner {
    gap: 16px;
  }
  .vs-div {
    display: none;
  }
  .vs-stat {
    padding: 0 16px;
  }
  .vs-usps {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .value-strip {
    padding: 28px 24px;
  }
  .value-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-items: center;
  }
  .vs-div {
    display: none;
  }
  .vs-stat {
    padding: 0;
  }
  .vs-usps {
    grid-column: 1/-1;
    justify-content: center;
    padding-left: 0;
    flex: none;
    gap: 6px;
  }
  .vs-usp {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/* SECTION COMMON */
section {
  padding: 100px 60px;
  position: relative;
  z-index: 1;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  max-width: 580px;
  line-height: 1.1;
}
.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.75;
}
.section-header {
  margin-bottom: 56px;
}
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 60px;
}

/* PRODUCTS */
.products-section {
  background: var(--card-bg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.product-card {
  background: var(--glass-fill);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  transition: all 0.3s;
}
.product-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}
.product-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(150, 71, 255, 0.12);
  border: 1px solid rgba(150, 71, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.product-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.product-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  color: var(--text-lo);
  background: var(--card-2);
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 0.04em;
}
.bundle-notice {
  background: rgba(150, 71, 255, 0.05);
  border: 1px solid rgba(150, 71, 255, 0.14);
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bundle-notice p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* CATEGORIES */
.categories-section {
  background: var(--bg);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.category-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.category-card:first-child {
  grid-column: span 2;
}
.category-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.cat-blob {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  top: -80px;
  right: -80px;
}
.category-card:hover .cat-blob {
  opacity: 0.1;
}
.cat-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}
.category-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.category-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.cat-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.cat-count {
  font-size: 12px;
  color: var(--text-lo);
}
.cat-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 14px;
  transition: all 0.3s;
}
.category-card:hover .cat-arrow {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  transform: rotate(45deg);
}
.grow-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-lo);
  display: flex;
  align-items: center;
  gap: 10px;
}
.grow-note::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--text-lo);
  flex-shrink: 0;
}

/* PROCESS */
.process-section {
  background: var(--card-bg);
}
.process-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 60px;
}
.path-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
}
.path-card.featured {
  border-color: var(--border-bright);
}
.path-tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
  text-transform: uppercase;
}
.path-icon {
  font-size: 26px;
  margin-bottom: 18px;
  display: block;
}
.path-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.path-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.steps-list {
  display: flex;
  flex-direction: column;
}
.step-item {
  display: flex;
  gap: 0;
  padding-bottom: 32px;
  border-left: 2px solid rgba(150, 71, 255, 0.15);
  padding-left: 28px;
  position: relative;
  margin-left: 10px;
}
.step-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}
.step-num-circle {
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.step-item h4 {
  font-size: 15px;
  margin-bottom: 6px;
}
.step-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* REQUIREMENTS CARD */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.form-card-blob {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(100px);
  opacity: 0.07;
  top: -100px;
  right: -80px;
  pointer-events: none;
}
.form-card-inner {
  position: relative;
  z-index: 1;
}
.form-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.form-cta-primary {
  background: var(--gradient);
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 12px;
  transition: opacity 0.2s;
  display: block;
  text-align: center;
  text-decoration: none;
}
.form-cta-primary:hover {
  opacity: 0.85;
}
.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-lo);
  line-height: 1.6;
}
/* PATH TOGGLE */
.path-toggle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.path-toggle-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  width: 100%;
}
.path-toggle-btn:hover {
  border-color: rgba(150, 71, 255, 0.4);
  background: rgba(150, 71, 255, 0.04);
}
.path-toggle-btn.active {
  border-color: rgba(150, 71, 255, 0.6);
  background: rgba(150, 71, 255, 0.08);
}
.ptb-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.ptb-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}
.ptb-desc {
  display: block;
  font-size: 11px;
  color: var(--text-mid);
}
.path-content {
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.path-explainer {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.path-area-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.area-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  border-radius: 9px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.2s;
}
.area-pill:hover {
  border-color: rgba(150, 71, 255, 0.4);
  color: white;
  background: rgba(150, 71, 255, 0.06);
}
.area-pill span {
  font-size: 11px;
  color: var(--text-lo);
}

/* CTA SECTION */
.cta-section {
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--purple);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.1;
  top: -150px;
  left: -80px;
  pointer-events: none;
}
.cta-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.09;
  bottom: -150px;
  right: -80px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cta-inner p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  padding: 32px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-lo);
}
.footer-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}
.footer-right {
  font-size: 12px;
  color: var(--text-lo);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-lo);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-mid);
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .category-card:first-child {
    grid-column: span 1;
  }
  .process-paths {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }
  section {
    padding: 70px 24px;
  }
  .hero {
    padding: 120px 24px 80px;
    min-height: auto;
  }
  .hero-inner {
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(32px, 8vw, 44px);
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 36px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
  .hero-eyebrow {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 24px;
  }
  .impact-section {
    padding: 60px 24px;
  }
  .impact-stats,
  .impact-usps {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .divider {
    margin: 0 24px;
  }
  .footer-links {
    display: none;
  }
}
/* BESPOKE FORM INPUTS */
.bespoke-field-group {
  margin-bottom: 14px;
}
.bespoke-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 7px;
}
.bespoke-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 13px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  resize: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.bespoke-input:focus {
  outline: none;
  border-color: rgba(150, 71, 255, 0.5);
}
.bespoke-input::placeholder {
  color: var(--text-lo);
}

/* TICKER */
.ticker-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-before {
  font-size: 12px;
  color: var(--text-lo);
  text-decoration: line-through;
}
.ticker-arrow {
  font-size: 12px;
  color: var(--purple);
}
.ticker-after {
  font-size: 12px;
  font-weight: 600;
  color: #c49aff;
}
/* PAIN POINTS */
.pain-section {
  padding: 70px 60px;
  background: var(--card-bg);
}
.pain-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pain-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.pain-card {
  background: var(--bg);
  padding: 32px 28px;
}
.pain-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 14px;
  opacity: 0.6;
}
.pain-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}
.pain-sub {
  font-size: 15px;
  color: var(--text-mid);
  text-align: center;
}
/* BARRIERS */
.barriers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.barrier-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.barrier-item:hover {
  border-color: rgba(150, 71, 255, 0.3);
}
.barrier-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.barrier-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-hi);
  margin-bottom: 8px;
  line-height: 1.5;
  font-style: italic;
}
.barrier-a {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .barriers-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .pain-section {
    padding: 50px 24px;
  }
  .ticker-item {
    padding: 8px 16px;
  }
}

/* SUBPAGE STYLES */

/* NAV (subpage overrides) */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--gradient-diag);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.nav-logo-text span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 0.1em;
}
.nav-div {
  width: 1px;
  height: 18px;
  background: var(--border);
}
.nav-bc {
  font-size: 13px;
  color: var(--text-lo);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-bc a {
  color: var(--text-lo);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-bc a:hover {
  color: var(--text-mid);
}
.nav-bc-sep {
  opacity: 0.4;
  font-size: 11px;
}
.nav-bc-cur {
  color: var(--text-mid);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-csm-btn {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-csm-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.sl-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  transition: all 0.25s;
}
.sl-btn:hover,
.sl-btn.active {
  border-color: var(--border-bright);
  color: var(--text-hi);
}
.sl-badge {
  background: var(--card-2);
  color: var(--text-lo);
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  padding: 0 4px;
}
.sl-badge.filled {
  background: var(--gradient);
  color: white;
}

/* PAGE HEADER */
.page-header {
  padding: 110px 60px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
}
.blob-1 {
  width: 600px;
  height: 600px;
  background: #9647ff;
  top: -200px;
  left: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: #475cff;
  bottom: -200px;
  right: -100px;
  animation: blobFloat 11s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(24px, -16px) scale(1.04);
  }
  66% {
    transform: translate(-16px, 12px) scale(0.97);
  }
}
.header-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-lo);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.back-link:hover {
  color: var(--text-mid);
}
.back-link svg {
  transition: transform 0.2s;
}
.back-link:hover svg {
  transform: translateX(-3px);
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(150, 71, 255, 0.1);
  border: 1px solid rgba(150, 71, 255, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: #c49aff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-header h1 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
  padding-bottom: 0.15em;
}
.page-header p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 500px;
}
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tab {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.tab.active {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  font-weight: 500;
}
.tab:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-hi);
}
.header-csm-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(150, 71, 255, 0.08);
  border: 1px solid rgba(150, 71, 255, 0.2);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  color: #c49aff;
  text-decoration: none;
  transition: all 0.2s;
}
.header-csm-cta:hover {
  background: rgba(150, 71, 255, 0.14);
  border-color: rgba(150, 71, 255, 0.35);
}

/* HEADER RIGHT - SUMMARY CARDS */
.header-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
  cursor: pointer;
}
.summary-card:hover {
  border-color: var(--border-bright);
  transform: translateX(3px);
}
.sum-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(150, 71, 255, 0.1);
  border: 1px solid rgba(150, 71, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.sum-info {
  flex: 1;
}
.sum-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.sum-meta {
  font-size: 11px;
  color: var(--text-lo);
}
.sum-arrow {
  color: var(--text-lo);
  font-size: 14px;
  transition: all 0.2s;
}
.summary-card:hover .sum-arrow {
  color: var(--purple);
}

/* MAIN LAYOUT */
.page-body {
  display: flex;
  align-items: flex-start;
}
.main {
  flex: 1;
  padding: 56px 60px 80px;
  min-width: 0;
  transition: padding-right 0.35s ease;
}
.main.panel-open {
  padding-right: calc(var(--panel-w) + 40px);
}

/* SUBCATEGORY */
.subcategory {
  margin-bottom: 72px;
}
.subcategory:last-child {
  margin-bottom: 0;
}
.sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.sub-title-group {
  display: flex;
  align-items: center;
  gap: 13px;
}
.sub-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(150, 71, 255, 0.1);
  border: 1px solid rgba(150, 71, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.sub-title {
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.sub-desc {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 2px;
}
.sub-count {
  font-size: 12px;
  color: var(--text-lo);
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.solution-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.solution-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}
.solution-card.selected {
  border-color: var(--border-bright);
  background: #1a1628;
}
.solution-card.selected:hover {
  border-color: var(--purple);
}
.card-body {
  padding: 22px 22px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1.3;
}
.card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.card-outcome {
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
}
.outcome-label {
  font-size: 9px;
  color: var(--text-lo);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}
.outcome-text {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.6;
}
.card-meta {
  padding: 12px 22px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.meta-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.meta-label {
  font-size: 9px;
  color: var(--text-lo);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  white-space: nowrap;
  padding-top: 3px;
  min-width: 72px;
  flex-shrink: 0;
}
.meta-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.tag {
  font-size: 9.5px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.tag-wf {
  background: rgba(150, 71, 255, 0.12);
  color: #c49aff;
  border: 1px solid rgba(150, 71, 255, 0.22);
}
.tag-sd {
  background: rgba(71, 92, 255, 0.12);
  color: #9aadff;
  border: 1px solid rgba(71, 92, 255, 0.22);
}
.tag-int {
  background: rgba(0, 190, 220, 0.08);
  color: #66d9f0;
  border: 1px solid rgba(0, 190, 220, 0.15);
}
.tag-time {
  background: rgba(255, 185, 0, 0.08);
  color: #ffd166;
  border: 1px solid rgba(255, 185, 0, 0.15);
}
.tag-risk {
  background: rgba(255, 90, 90, 0.08);
  color: #ff9a9a;
  border: 1px solid rgba(255, 90, 90, 0.15);
}
.tag-vis {
  background: rgba(0, 200, 150, 0.08);
  color: #66e0c0;
  border: 1px solid rgba(0, 200, 150, 0.15);
}
.tag-exp {
  background: rgba(150, 71, 255, 0.1);
  color: #c49aff;
  border: 1px solid rgba(150, 71, 255, 0.2);
}
.card-cta {
  padding: 10px 22px 18px;
}
.interest-btn {
  width: 100%;
  padding: 9px;
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-mid);
}
.interest-btn:hover {
  border-color: var(--border-bright);
  color: var(--text-hi);
  background: rgba(150, 71, 255, 0.06);
}
.solution-card.selected .interest-btn {
  background: rgba(150, 71, 255, 0.15);
  border-color: var(--border-bright);
  color: #c49aff;
}

/* SHORTLIST PANEL */
.sl-panel {
  padding-top: 20px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--panel-w);
  z-index: 150;
  background: #161616;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.sl-panel.open {
  transform: translateX(0);
}
.panel-head {
  padding: 72px 22px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.panel-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.panel-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.panel-close {
  background: none;
  border: none;
  color: var(--text-lo);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 3px;
}
.panel-close:hover {
  color: var(--text-hi);
}
.panel-sub {
  font-size: 12px;
  color: var(--text-lo);
  line-height: 1.5;
}
.panel-items {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.panel-items::-webkit-scrollbar {
  width: 3px;
}
.panel-items::-webkit-scrollbar-thumb {
  background: var(--card-2);
  border-radius: 2px;
}
.panel-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-lo);
  font-size: 13px;
  line-height: 1.7;
}
.panel-empty-icon {
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0.35;
}
.panel-group-label {
  font-size: 9px;
  color: var(--text-lo);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 8px 2px 4px;
}
.panel-item {
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 11px 13px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 9px;
  animation: slideIn 0.2s ease;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.pi-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 2px;
}
.pi-sub {
  font-size: 10px;
  color: var(--text-lo);
}
.pi-remove {
  background: none;
  border: none;
  color: var(--text-lo);
  font-size: 18px;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
  flex-shrink: 0;
  padding: 4px 8px;
  margin-top: 0;
  border-radius: 6px;
  line-height: 1;
}
.pi-remove:hover {
  color: #ff9a9a;
  background: rgba(255, 154, 154, 0.1);
}
.panel-footer {
  padding: 14px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.submit-btn {
  width: 100%;
  padding: 12px;
  border-radius: 9px;
  background: var(--gradient);
  border: none;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 8px;
}
.submit-btn:hover {
  opacity: 0.85;
}
.submit-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.panel-csm-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  border-radius: 9px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  background: transparent;
  text-decoration: none;
  transition: all 0.2s;
}
.panel-csm-link:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* SUBMIT MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-head {
  padding: 28px 28px 0;
  margin-bottom: 22px;
}
.modal-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-lo);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.modal-close:hover {
  color: var(--text-hi);
}
.modal-body {
  padding: 0 28px 28px;
}
.field-group {
  margin-bottom: 14px;
}
.field-label {
  font-size: 11px;
  color: var(--text-lo);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 7px;
  display: block;
}
.field-input {
  width: 100%;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 14px;
  color: var(--text-hi);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.field-input:focus {
  border-color: var(--border-bright);
}
.field-input::placeholder {
  color: var(--text-lo);
}
textarea.field-input {
  resize: none;
  min-height: 80px;
  line-height: 1.6;
}
.modal-selected {
  background: rgba(150, 71, 255, 0.07);
  border: 1px solid rgba(150, 71, 255, 0.15);
  border-radius: 11px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.modal-selected-label {
  font-size: 10px;
  color: #c49aff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.modal-sel-item {
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 5px;
  line-height: 1.4;
}
.modal-sel-item:last-child {
  margin-bottom: 0;
}
.modal-sel-item span:first-child {
  color: var(--purple);
  flex-shrink: 0;
}
.generate-btn {
  width: 100%;
  padding: 14px;
  border-radius: 11px;
  background: var(--gradient);
  border: none;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 6px;
}
.generate-btn:hover {
  opacity: 0.88;
}
.generate-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* SUCCESS STATE */
.success-state {
  display: none;
  padding: 0 28px 28px;
  text-align: center;
}
.success-state.visible {
  display: block;
}
.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.success-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.success-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.success-btn-primary {
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--gradient);
  border: none;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.success-btn-primary:hover {
  opacity: 0.85;
}
.success-btn-secondary {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  transition: all 0.2s;
}
.success-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.success-note {
  font-size: 11px;
  color: var(--text-lo);
  margin-top: 12px;
  line-height: 1.5;
}

/* PAGE CTA STRIP */
.page-cta-strip {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.page-cta-text h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.page-cta-text p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 460px;
}
.page-cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(150, 71, 255, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* OTHER AREAS */
.other-section {
  padding: 0 60px 80px;
}
.other-section h3 {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 600;
  margin-bottom: 14px;
}
.other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}
.other-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 13px;
}
.other-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.other-card-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.other-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.3;
}
.other-card-count {
  font-size: 10px;
  color: var(--text-lo);
  margin-top: 2px;
}

/* FOOTER */
footer {
  padding: 28px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-lo);
}
.footer-div {
  width: 1px;
  height: 13px;
  background: var(--border);
}
.footer-right {
  font-size: 12px;
  color: var(--text-lo);
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-lo);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-mid);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}
.d1 {
  animation-delay: 0.05s;
}
.d2 {
  animation-delay: 0.12s;
}
.d3 {
  animation-delay: 0.2s;
}
.d4 {
  animation-delay: 0.28s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .other-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* Inner page nav */
nav.nav-inner {
  justify-content: flex-start;
  gap: 0;
}
nav.nav-inner .nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
@media (max-width: 1279px) {
  nav.nav-inner .nav-bc {
    display: none;
  }
  nav.nav-inner .nav-csm-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 14px 24px;
  }
  .page-header,
  .main,
  .other-section,
  .page-cta-strip {
    padding-left: 24px;
    padding-right: 24px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .main.panel-open {
    padding-right: 24px;
  }
  .page-cta-strip {
    flex-direction: column;
    align-items: stretch;
  }
  .page-cta-actions {
    flex-direction: column;
  }
  .page-cta-actions .btn-primary,
  .page-cta-actions .btn-ghost {
    justify-content: center;
    width: 100%;
  }
}

/* Global cart badge pulse on add */
@keyframes badgePop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
.sl-badge.pop {
  animation: badgePop 0.3s ease;
}

/* Panel page group label */
.panel-page-group {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  padding: 14px 16px 4px;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}
.panel-page-group:first-child {
  border-top: none;
  margin-top: 0;
}
