/* =========================================
   JENATECHLABS — ENTERPRISE SAAS UI SYSTEM
========================================= */

/* =========================================
   ROOT DESIGN SYSTEM
========================================= */
:root {

  /* COLORS */
  --primary: #635bff;
  --secondary: #22d3ee;

  --dark: #0a2540;
  --text: #334155;
  --muted: #64748b;

  --bg: #ffffff;
  --bg-soft: #f8fafc;

  /* WIDTH */
  --container-width: 1180px;

  /* SHADOWS */
  --shadow-sm:
    0 8px 25px rgba(0,0,0,0.04);

  --shadow-md:
    0 20px 50px rgba(0,0,0,0.08);

  --shadow-lg:
    0 30px 80px rgba(0,0,0,0.12);

  /* RADIUS */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;

  /* TRANSITIONS */
  --transition:
    all 0.3s ease;
}

/* =========================================
   GLOBAL
========================================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {

  margin: 0;

  font-family: 'Inter', sans-serif;

  background: var(--bg);

  color: var(--dark);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
p {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.container,
.nav-inner {
  max-width: var(--container-width);
}

::selection {
  background: rgba(99,91,255,0.15);
}

/* =========================================
   FLOATING BACKGROUND BLOBS
========================================= */

body::before,
body::after {

  content: "";

  position: fixed;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  z-index: -1;

  filter: blur(120px);

  opacity: 0.35;

  animation:
    floatBlob 18s ease-in-out infinite alternate;
}

/* LEFT */
body::before {

  background:
    radial-gradient(
      circle,
      rgba(99,102,241,0.12),
      transparent 70%
    );

  top: -250px;
  left: -250px;
}

/* RIGHT */
body::after {

  background:
    radial-gradient(
      circle,
      rgba(34,211,238,0.10),
      transparent 70%
    );

  bottom: -250px;
  right: -250px;

  animation-delay: 3s;
}

@keyframes floatBlob {

  0% {
    transform:
      translate(0px,0px) scale(1);
  }

  50% {
    transform:
      translate(40px,60px) scale(1.1);
  }

  100% {
    transform:
      translate(-30px,-20px) scale(1);
  }
}

/* =========================================
   NAVBAR
========================================= */

.nav {

  position: fixed;

  top: 0;

  width: 100%;

  z-index: 1000;

  background:
    rgba(255,255,255,0.72);

  backdrop-filter:
    blur(22px);

  -webkit-backdrop-filter:
    blur(22px);

  border-bottom:
    1px solid rgba(255,255,255,0.2);

  transition:
    var(--transition);
}

.nav.scrolled {

  background:
    rgba(255,255,255,0.65);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.08);
}

.nav-inner {

  margin: auto;

  padding: 16px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   LOGO
========================================= */

.logo-box {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo {

  margin: 0;

  font-size: 22px;

  font-weight: 700;

  letter-spacing: -0.5px;

  background:
    linear-gradient(
      90deg,
      var(--dark),
      var(--primary),
      var(--secondary)
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-tagline {

  font-size: 11px;

  color: var(--muted);

  margin-top: 3px;

  letter-spacing: 0.5px;
}

/* =========================================
   NAV LINKS
========================================= */

.nav-links {

  display: flex;

  gap: 30px;
}

.nav-links a {

  position: relative;

  text-decoration: none;

  color: var(--text);

  font-weight: 500;

  transition:
    var(--transition);
}

.nav-links a::after {

  content: "";

  position: absolute;

  left: 50%;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--secondary)
    );

  transition:
    var(--transition);

  transform:
    translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {

  color: var(--dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {

  width: 100%;
}

/* =========================================
   NAV ACTIONS
========================================= */

.nav-actions {

  display: flex;

  align-items: center;

  gap: 18px;
}

.nav-login {

  text-decoration: none;

  color: var(--text);

  font-weight: 500;
}

.nav-cta {

  position: relative;

  padding: 11px 20px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--secondary)
    );

  color: white;

  text-decoration: none;

  font-weight: 600;

  overflow: hidden;

  box-shadow:
    0 10px 25px rgba(99,91,255,0.35);

  transition:
    var(--transition);
}

.nav-cta:hover {

  transform:
    translateY(-2px);

  box-shadow:
    0 20px 40px rgba(99,91,255,0.4);
}

/* =========================================
   HERO
========================================= */

.hero {

  position: relative;

  padding:
    140px 20px 100px;

  overflow: hidden;

  text-align: center;
}

/* background */
.hero-bg {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      120deg,
      #ffffff,
      #f8fafc,
      #f1f5f9
    );

  z-index: 0;
}

/* glow */
.hero-bg::before {

  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  top: -200px;
  left: -200px;

  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(99,91,255,0.35),
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(34,211,238,0.35),
      transparent 60%
    );

  filter: blur(100px);

  animation:
    gradientShift 8s ease-in-out infinite;
}

.hero-content {

  position: relative;

  z-index: 2;

  max-width: 920px;

  margin: auto;
}

.hero h1 {

  font-size:
    clamp(42px, 8vw, 72px);

  line-height: 1.02;

  letter-spacing: -3px;

  font-weight: 700;

  margin-bottom: 28px;

  background:
    linear-gradient(
      90deg,
      var(--dark),
      var(--primary)
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {

  max-width: 760px;

  margin: auto;

  font-size: 20px;

  line-height: 1.7;

  color: var(--muted);
}

.hero-buttons {

  margin-top: 40px;

  display: flex;

  justify-content: center;

  gap: 16px;

  flex-wrap: wrap;
}

#network {

  position: absolute;

  inset: 0;

  z-index: 0;
}

/* =========================================
   BUTTONS
========================================= */

.btn-primary {

  padding: 13px 28px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--secondary)
    );

  color: white;

  text-decoration: none;

  font-weight: 600;

  box-shadow:
    0 10px 25px rgba(99,91,255,0.25);

  transition:
    var(--transition);
}

.btn-primary:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 20px 40px rgba(99,91,255,0.35);
}

.btn-secondary {

  padding: 13px 28px;

  border-radius: 999px;

  border:
    1px solid rgba(99,91,255,0.2);

  background:
    rgba(255,255,255,0.65);

  backdrop-filter:
    blur(10px);

  text-decoration: none;

  color: var(--primary);

  font-weight: 600;

  transition:
    var(--transition);
}

.btn-secondary:hover {

  transform:
    translateY(-3px);
}

/* =========================================
   SECTIONS
========================================= */

.section {

  padding:
    110px 20px;

  text-align: center;
}

.section-title {

  font-size: 42px;

  font-weight: 700;

  letter-spacing: -1.5px;

  margin-bottom: 16px;

  background:
    linear-gradient(
      90deg,
      var(--dark),
      var(--primary)
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {

  color: var(--muted);

  font-size: 18px;

  line-height: 1.7;

  max-width: 760px;

  margin: auto;
}

.section-title2 {

  display: inline-block;

  margin-bottom: 12px;

  font-size: 15px;

  font-weight: 600;

  color: var(--primary);

  background:
    rgba(99,91,255,0.08);

  padding: 8px 16px;

  border-radius: 999px;
}

/* =========================================
   GRID
========================================= */

.grid,
.usecase-grid,
.stats-grid,
.price-grid {

  display: grid;

  gap: 28px;
}

.grid {

  grid-template-columns:
    repeat(3,1fr);

  margin-top: 50px;
}

/* =========================================
   CARDS
========================================= */

.card {

  position: relative;

  background:
    rgba(255,255,255,0.82);

  backdrop-filter:
    blur(14px);

  border:
    1px solid rgba(255,255,255,0.35);

  border-radius:
    var(--radius-md);

  padding: 26px;

  text-align: left;

  overflow: hidden;

  transition:
    var(--transition);

  box-shadow:
    var(--shadow-sm);
}

.card::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--secondary)
    );
}

.card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.10);
}

.card h3 {

  font-size: 18px;

  margin-bottom: 12px;
}

.card p {

  color: var(--text);

  line-height: 1.7;

  font-size: 14px;
}

/* =========================================
   PRODUCTS
========================================= */

.product {

  display: flex;

  gap: 50px;

  align-items: center;

  flex-wrap: wrap;

  margin-top: 70px;
}

.product.reverse {

  flex-direction: row-reverse;
}

.product-content {

  flex: 1;

  min-width: 300px;

  text-align: left;
}

.product-preview {

  flex: 1;

  min-width: 320px;
}

.product-badge {

  display: inline-block;

  padding: 8px 14px;

  border-radius: 999px;

  background:
    rgba(99,91,255,0.1);

  color: var(--primary);

  font-size: 12px;

  font-weight: 600;

  margin-bottom: 16px;
}

.product-tagline {

  color: var(--muted);

  margin-top: -10px;
}

.product-box {

  position: relative;

  background:
    rgba(255,255,255,0.82);

  backdrop-filter:
    blur(18px);

  border:
    1px solid rgba(255,255,255,0.45);

  border-radius: 22px;

  padding: 28px;

  overflow: hidden;

  box-shadow:
    var(--shadow-lg);

  transition:
    var(--transition);
}

.product-box:hover {

  transform:
    translateY(-8px);
}

.preview-header {

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;

  display: flex;

  align-items: center;

  gap: 10px;
}

.live-dot {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #22c55e;

  box-shadow:
    0 0 12px #22c55e;
}

.tech-stack {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin: 24px 0;
}

.tech-stack span {

  padding: 8px 14px;

  border-radius: 999px;

  background:
    rgba(99,91,255,0.08);

  color: var(--primary);

  font-size: 13px;

  font-weight: 600;
}

.feature-list {

  padding-left: 18px;

  color: var(--text);

  line-height: 1.9;
}

.product-actions {

  margin-top: 30px;

  display: flex;

  gap: 14px;

  flex-wrap: wrap;
}

/* =========================================
   STATS
========================================= */

.stats-grid {

  grid-template-columns:
    repeat(2,1fr);

  margin-bottom: 24px;
}

.stat-card {

  background:
    var(--bg-soft);

  padding: 18px;

  border-radius: 14px;

  text-align: left;
}

.stat-card span {

  color: var(--muted);

  font-size: 13px;
}

.stat-card h4 {

  margin: 8px 0 0;

  font-size: 22px;
}

/* =========================================
   MAP
========================================= */

.map-wrapper {

  position: relative;

  margin-top: 18px;
}

#mapPreview {

  width: 100%;
  height: 260px;

  border-radius: 14px;
}

.map-ui {

  position: absolute;

  bottom: 12px;
  left: 12px;

  background:
    rgba(10,37,64,0.88);

  color: white;

  padding: 12px 14px;

  border-radius: 12px;

  font-size: 13px;

  line-height: 1.6;
}

.map-controls {

  position: absolute;

  top: 12px;
  right: 12px;

  background:
    rgba(255,255,255,0.92);

  padding: 8px 12px;

  border-radius: 10px;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.08);
}

/* =========================================
   USE CASES
========================================= */

.usecase-grid {

  grid-template-columns:
    repeat(5,1fr);

  margin-top: 50px;
}

.usecase-card {

  background:
    rgba(255,255,255,0.82);

  backdrop-filter:
    blur(14px);

  padding: 26px;

  border-radius: 18px;

  border:
    1px solid rgba(255,255,255,0.35);

  box-shadow:
    var(--shadow-sm);

  transition:
    var(--transition);
}

.usecase-card:hover {

  transform:
    translateY(-6px);
}

.usecase-icon {

  font-size: 34px;

  margin-bottom: 18px;
}

/* =========================================
   CTA
========================================= */

.cta {

  position: relative;

  padding:
    130px 20px;

  text-align: center;

  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      #0a2540,
      #1e293b
    );

  color: white;
}

.cta::before {

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background:
    radial-gradient(
      circle,
      rgba(99,91,255,0.35),
      transparent 70%
    );

  top: -150px;
  left: -150px;

  filter: blur(100px);
}

.cta::after {

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background:
    radial-gradient(
      circle,
      rgba(34,211,238,0.35),
      transparent 70%
    );

  bottom: -150px;
  right: -150px;

  filter: blur(100px);
}

.cta h2 {

  font-size: 48px;

  letter-spacing: -2px;

  margin-bottom: 12px;
}

.cta p {

  color:
    rgba(255,255,255,0.75);

  font-size: 18px;
}

.cta-actions {

  margin-top: 34px;

  display: flex;

  justify-content: center;

  gap: 16px;

  flex-wrap: wrap;
}

.cta-btn,
.cta-email {

  padding: 13px 26px;

  border-radius: 999px;

  text-decoration: none;

  font-weight: 600;

  transition:
    var(--transition);
}

.cta-btn {

  background: white;

  color: var(--dark);
}

.cta-email {

  background:
    rgba(255,255,255,0.12);

  color: white;

  border:
    1px solid rgba(255,255,255,0.18);

  backdrop-filter:
    blur(10px);
}

/* =========================================
   FOOTER
========================================= */

footer {

  padding: 30px;

  text-align: center;

  color: var(--muted);

  border-top:
    1px solid #e5e7eb;
}

/* =========================================
   MOBILE MENU
========================================= */

.hamburger {

  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;
}

.hamburger span {

  width: 22px;
  height: 2px;

  background: var(--dark);

  border-radius: 2px;

  transition:
    var(--transition);
}

.mobile-menu {

  position: fixed;

  top: 0;
  right: -100%;

  width: 260px;
  height: 100vh;

  background:
    rgba(255,255,255,0.95);

  backdrop-filter:
    blur(22px);

  display: flex;

  flex-direction: column;

  padding: 100px 30px;

  gap: 22px;

  transition:
    0.4s ease;

  z-index: 1000;
}

.mobile-menu.active {

  right: 0;
}

.mobile-menu a {

  text-decoration: none;

  color: var(--dark);

  font-size: 18px;

  font-weight: 500;
}

.mobile-cta {

  margin-top: 18px;

  padding: 12px;

  text-align: center;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--secondary)
    );

  color: white !important;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes gradientShift {

  0% {
    transform:
      translate(0,0);
  }

  50% {
    transform:
      translate(60px,40px);
  }

  100% {
    transform:
      translate(0,0);
  }
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 1100px){

  .usecase-grid {

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

@media(max-width: 900px){

  .nav-links,
  .nav-actions {

    display: none;
  }

  .hamburger {

    display: flex;
  }

  .grid,
  .usecase-grid {

    grid-template-columns: 1fr;
  }

  .product {

    flex-direction: column;
  }

  .hero {

    padding-top: 120px;
  }

  .hero h1 {

    letter-spacing: -2px;
  }

  .hero-description {

    font-size: 17px;
  }

  .section {

    padding: 80px 20px;
  }

  .section-title {

    font-size: 34px;
  }

  .stats-grid {

    grid-template-columns: 1fr;
  }
}
/* ======================
   PRODUCT BADGES
====================== */
.product-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;

  background: rgba(99,91,255,0.12);
  color: #635bff;
  border: 1px solid rgba(99,91,255,0.18);
}

.product-badge.secondary {
  background: rgba(34,211,238,0.12);
  color: #0891b2;
  border: 1px solid rgba(34,211,238,0.18);
}

/* ======================
   PRODUCT TAGLINE
====================== */
.product-tagline {
  color: #635bff;
  font-size: 16px;
  font-weight: 600;
  margin-top: -6px;
  margin-bottom: 14px;
}

/* ======================
   TECH STACK
====================== */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.tech-stack span {
  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(99,91,255,0.08);
  color: #4f46e5;

  font-size: 13px;
  font-weight: 600;

  border: 1px solid rgba(99,91,255,0.12);
}

/* ======================
   PRODUCT ACTIONS
====================== */
.product-actions {
  margin-top: 25px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ======================
   PREVIEW HEADER
====================== */
.preview-header {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 600;
  color: #0a2540;

  margin-bottom: 18px;
}

/* LIVE DOT */
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;

  box-shadow: 0 0 12px rgba(34,197,94,0.7);

  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ======================
   STATS GRID
====================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.stat-card {
  background: rgba(248,250,252,0.9);
  border: 1px solid rgba(0,0,0,0.04);

  border-radius: 14px;
  padding: 16px;
}

.stat-card span {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
}

.stat-card h4 {
  margin: 0;
  font-size: 22px;
  color: #0a2540;
}

/* ======================
   USE CASES
====================== */
.usecase-section {
  margin-top: 100px;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.usecase-card {
  background: rgba(255,255,255,0.85);

  backdrop-filter: blur(10px);

  border-radius: 18px;
  padding: 24px;

  border: 1px solid rgba(0,0,0,0.05);

  transition: 0.3s;
}

.usecase-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.usecase-icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.usecase-card h4 {
  margin-bottom: 10px;
  color: #0a2540;
}

.usecase-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}
/* ======================
   RESPONSIVE IMPROVEMENTS
====================== */

@media(max-width: 1100px){

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

}

@media(max-width: 900px){

  .product {
    flex-direction: column;
  }

  .product.reverse {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-title {
    font-size: 32px;
  }

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

}

@media(max-width: 700px){

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

  .hero {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .product-box {
    padding: 18px;
  }

  .cta h2 {
    font-size: 30px;
  }

}

/* =========================================
   ARCHITECTURE SECTION
========================================= */

.architecture-section {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
}

/* background glow */
.architecture-section::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  background:
    radial-gradient(circle,
    rgba(99,91,255,0.12),
    transparent 70%);

  top: -200px;
  left: -200px;

  filter: blur(80px);
}

/* ======================
   PIPELINE
====================== */

.pipeline-wrapper {
  margin-top: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  flex-wrap: wrap;
}

/* CARD */
.pipeline-card {
  position: relative;

  width: 200px;

  padding: 28px 22px;

  border-radius: 20px;

  background: rgba(255,255,255,0.8);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05);

  transition: 0.35s;
}

.pipeline-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.10);
}

/* ICON */
.pipeline-icon {
  font-size: 38px;
  margin-bottom: 14px;
}

/* TITLE */
.pipeline-card h4 {
  margin-bottom: 10px;

  color: #0a2540;

  font-size: 18px;
}

/* TEXT */
.pipeline-card p {
  color: #64748b;

  font-size: 14px;
  line-height: 1.6;
}

/* CONNECTOR LINE */
.pipeline-line {
  width: 50px;
  height: 3px;

  border-radius: 999px;

  background:
    linear-gradient(90deg,
    #635bff,
    #22d3ee);
}

/* ======================
   STACK TAGS
====================== */

.architecture-stack {
  margin-top: 50px;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 14px;
}

.architecture-stack span {
  padding: 10px 16px;

  border-radius: 999px;

  background:
    rgba(99,91,255,0.08);

  border:
    1px solid rgba(99,91,255,0.12);

  color: #4f46e5;

  font-size: 13px;
  font-weight: 600;

  transition: 0.3s;
}

.architecture-stack span:hover {
  transform: translateY(-3px);

  background:
    rgba(99,91,255,0.14);
}

/* ======================
   RESPONSIVE
====================== */

@media(max-width: 1100px){

  .pipeline-wrapper {
    gap: 30px;
  }

  .pipeline-line {
    display: none;
  }

}

@media(max-width: 700px){

  .pipeline-card {
    width: 100%;
    max-width: 320px;
  }

}
/* =========================================
   ARCHITECTURE SECTION
========================================= */

.architecture-section {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 50%,
      #eef2ff 100%
    );
}

/* subtle glow */
.architecture-section::before {
  content: "";

  position: absolute;
  width: 600px;
  height: 600px;

  top: -200px;
  right: -200px;

  background:
    radial-gradient(
      circle,
      rgba(99,91,255,0.12),
      transparent 70%
    );

  filter: blur(80px);
  z-index: 0;
}

.architecture-section .container {
  position: relative;
  z-index: 1;
}

/* =========================================
   PIPELINE LAYOUT
========================================= */

.pipeline-wrapper {
  margin-top: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;
  gap: 20px;
}

/* line connector */
.pipeline-line {
  width: 60px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #635bff,
      #22d3ee
    );

  opacity: 0.7;
}

/* =========================================
   PIPELINE CARD
========================================= */

.pipeline-card {
  width: 210px;
  position: relative;

  padding: 24px 22px;

  border-radius: 24px;

  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.6);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.06);

  transition: 0.35s ease;

  overflow: hidden;
}

/* HEADER ALIGN */
.pipeline-card h4 {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 18px;
  margin-bottom: 14px;

  color: #0a2540;
}

/* ICON */
.pipeline-icon {
  width: 50px;
  height: 50px;

  min-width: 50px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(99,91,255,0.12),
      rgba(34,211,238,0.12)
    );

  border:
    1px solid rgba(99,91,255,0.12);
}

/* =========================================
   STACK TAGS
========================================= */

.architecture-stack {
  margin-top: 70px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 14px;
}

.architecture-stack span {
  padding: 12px 18px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  color: #0a2540;

  background:
    rgba(255,255,255,0.8);

  border:
    1px solid rgba(99,91,255,0.08);

  backdrop-filter: blur(10px);

  box-shadow:
    0 8px 25px rgba(0,0,0,0.04);

  transition: 0.3s ease;
}

.architecture-stack span:hover {
  transform: translateY(-3px);

  background:
    linear-gradient(
      90deg,
      #635bff,
      #22d3ee
    );

  color: white;

  box-shadow:
    0 15px 35px rgba(99,91,255,0.25);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width: 1100px){

  .pipeline-wrapper {
    flex-direction: column;
  }

  .pipeline-line {
    width: 2px;
    height: 40px;
  }

}

@media(max-width: 768px){

  .pipeline-card {
    width: 100%;
    max-width: 340px;
  }

}
