/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/landing.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* ── Landing page styles (scoped via .lp wrapper) ────────────────────────── */

.lp {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg, #08080F);
  color: var(--text, #E8E8F0);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

/* Noise overlay */
.lp::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.5;
}

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(8,8,15,0.80);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em;
}
.lp-logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--purple,#7C6FE8), var(--green,#22C97A));
  display: grid; place-items: center; font-size: 16px;
}
.lp-nav-links { display: flex; gap: 32px; color: var(--muted,#7A7A9A); font-size: 0.9rem; }
.lp-nav-links a { text-decoration: none; color: inherit; transition: color 0.2s; }
.lp-nav-links a:hover { color: var(--text,#E8E8F0); }

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

.lp-nav-login {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text,#E8E8F0);
  padding: 8px 18px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.lp-nav-login:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

.lp-nav-cta {
  background: linear-gradient(135deg, var(--purple,#7C6FE8), var(--purple-d,#534AB7));
  color: #fff; padding: 9px 22px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(124,111,232,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(124,111,232,0.5); }

/* ── Ticker ───────────────────────────────────────────────────────────────── */
.lp .ticker-wrap {
  background: rgba(124,111,232,0.07);
  border-top: 1px solid rgba(124,111,232,0.15);
  border-bottom: 1px solid rgba(124,111,232,0.15);
  padding: 10px 0; overflow: hidden; white-space: nowrap;
}
.lp .ticker-inner { display: inline-flex; gap: 60px; animation: lp-ticker 25s linear infinite; }
.lp .ticker-item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--muted,#7A7A9A); }
.lp .ticker-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.lp .hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 140px 24px 80px;
  overflow: hidden;
}
.lp .orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.lp .orb-1 { width: 500px; height: 500px; background: rgba(124,111,232,0.18); top: -100px; left: -100px; }
.lp .orb-2 { width: 400px; height: 400px; background: rgba(34,201,122,0.12); bottom: 50px; right: -80px; }
.lp .orb-3 { width: 300px; height: 300px; background: rgba(59,158,255,0.1); top: 50%; left: 50%; transform: translate(-50%,-50%); }

.lp .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,111,232,0.12); border: 1px solid rgba(124,111,232,0.3);
  color: var(--purple,#7C6FE8); padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 28px; animation: lp-fadeUp 0.6s ease both;
}
.lp .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green,#22C97A); animation: lp-pulse 2s infinite; display: inline-block; }

.lp .hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.08;
  max-width: 900px; margin-bottom: 24px;
  animation: lp-fadeUp 0.6s 0.1s ease both;
}
.lp .hero h1 .grad {
  background: linear-gradient(135deg, var(--purple,#7C6FE8) 0%, var(--blue,#3B9EFF) 50%, var(--green,#22C97A) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp .hero p {
  font-size: 1.15rem; color: var(--muted,#7A7A9A); max-width: 620px;
  margin-bottom: 40px; animation: lp-fadeUp 0.6s 0.2s ease both;
}
.lp .hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: lp-fadeUp 0.6s 0.3s ease both;
}
.lp .btn-primary {
  background: linear-gradient(135deg, var(--purple,#7C6FE8), var(--purple-d,#534AB7));
  color: #fff; padding: 14px 32px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  box-shadow: 0 0 40px rgba(124,111,232,0.35);
  transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
}
.lp .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(124,111,232,0.5); }
.lp .btn-secondary {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  color: var(--text,#E8E8F0); padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; display: inline-block;
  transition: background 0.2s, border-color 0.2s;
}
.lp .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }

/* ── Dashboard mockup ─────────────────────────────────────────────────────── */
.lp .dashboard-wrap {
  position: relative; margin-top: 70px; width: 100%; max-width: 1000px;
  animation: lp-fadeUp 0.8s 0.4s ease both;
}
.lp .dashboard-frame {
  background: var(--bg2,#0E0E1A); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.lp .frame-bar {
  background: var(--bg3,#13132A); padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp .dot { width: 11px; height: 11px; border-radius: 50%; }
.lp .dot-r { background: #FF5F56; } .lp .dot-y { background: #FFBD2E; } .lp .dot-g { background: #27C93F; }
.lp .frame-url {
  flex: 1; background: rgba(255,255,255,0.05); border-radius: 6px;
  padding: 5px 14px; font-size: 0.78rem; color: var(--muted,#7A7A9A);
  max-width: 320px; margin: 0 auto;
}
.lp .dashboard-body { display: grid; grid-template-columns: 220px 1fr; min-height: 380px; }
.lp .dash-sidebar { background: rgba(255,255,255,0.02); border-right: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.lp .sidebar-section { padding: 0 16px; margin-bottom: 20px; }
.lp .sidebar-label { font-size: 0.68rem; font-weight: 600; color: var(--muted,#7A7A9A); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.lp .sidebar-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; font-size: 0.82rem; color: var(--muted,#7A7A9A); margin-bottom: 2px; }
.lp .sidebar-item.active { background: rgba(124,111,232,0.12); color: var(--purple,#7C6FE8); }
.lp .si-icon { width: 18px; text-align: center; font-size: 13px; }

.lp .dash-main { padding: 24px; overflow: hidden; }
.lp .dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.lp .dash-title { font-weight: 700; font-size: 1rem; }
.lp .status-badge { display: flex; align-items: center; gap: 6px; background: rgba(34,201,122,0.12); border: 1px solid rgba(34,201,122,0.25); color: var(--green,#22C97A); padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }

.lp .kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.lp .kpi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 14px 16px; }
.lp .kpi-label { font-size: 0.72rem; color: var(--muted,#7A7A9A); margin-bottom: 6px; }
.lp .kpi-value { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.lp .kpi-trend { font-size: 0.72rem; color: var(--green,#22C97A); margin-top: 4px; }

.lp .incident-list { display: flex; flex-direction: column; gap: 8px; }
.lp .incident-item { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 10px 14px; font-size: 0.8rem; }
.lp .sev { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lp .sev-high { background: var(--red,#E8523A); box-shadow: 0 0 6px var(--red,#E8523A); }
.lp .sev-med  { background: var(--orange,#F97316); box-shadow: 0 0 6px var(--orange,#F97316); }
.lp .sev-low  { background: var(--green,#22C97A); box-shadow: 0 0 6px var(--green,#22C97A); }
.lp .inc-name { flex: 1; font-weight: 500; }
.lp .inc-status { font-size: 0.72rem; padding: 3px 8px; border-radius: 100px; font-weight: 600; }
.lp .inc-remediating { background: rgba(124,111,232,0.15); color: var(--purple,#7C6FE8); }
.lp .inc-resolved    { background: rgba(34,201,122,0.15);  color: var(--green,#22C97A);  }
.lp .inc-open        { background: rgba(249,115,22,0.15);  color: var(--orange,#F97316); }

/* ── Sections ─────────────────────────────────────────────────────────────── */
.lp section { position: relative; padding: 100px 24px; }
.lp .container { max-width: 1100px; margin: 0 auto; }
.lp .section-tag { display: inline-block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 14px; border-radius: 100px; margin-bottom: 16px; }
.lp .tag-purple { background: rgba(124,111,232,0.15); color: var(--purple,#7C6FE8); }
.lp .tag-green  { background: rgba(34,201,122,0.15);  color: var(--green,#22C97A);  }
.lp .tag-blue   { background: rgba(59,158,255,0.15);  color: var(--blue,#3B9EFF);   }
.lp .tag-orange { background: rgba(249,115,22,0.15);  color: var(--orange,#F97316); }
.lp h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; }
.lp .section-desc { color: var(--muted,#7A7A9A); font-size: 1.05rem; max-width: 560px; }

/* ── How it works ─────────────────────────────────────────────────────────── */
.lp .hiw-bg { background: var(--bg2,#0E0E1A); border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); }
.lp .flow-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 60px; position: relative; }
.lp .flow-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; }
.lp .flow-step:not(:last-child)::after { content: ''; position: absolute; right: -4px; top: 30px; width: 8px; height: 2px; background: linear-gradient(90deg, var(--purple,#7C6FE8), var(--green,#22C97A)); opacity: 0.4; }
.lp .flow-connector { position: absolute; top: 30px; left: 10%; width: 80%; height: 2px; background: linear-gradient(90deg, var(--purple,#7C6FE8), var(--blue,#3B9EFF), var(--green,#22C97A)); opacity: 0.2; }
.lp .flow-icon { width: 60px; height: 60px; border-radius: 16px; margin-bottom: 16px; display: grid; place-items: center; font-size: 24px; border: 1px solid rgba(255,255,255,0.07); position: relative; z-index: 1; transition: transform 0.3s; }
.lp .flow-step:hover .flow-icon { transform: translateY(-4px); }
.lp .fi-1 { background: rgba(124,111,232,0.15); border-color: rgba(124,111,232,0.3); }
.lp .fi-2 { background: rgba(249,115,22,0.15);  border-color: rgba(249,115,22,0.3);  }
.lp .fi-3 { background: rgba(34,201,122,0.15);  border-color: rgba(34,201,122,0.3);  }
.lp .fi-4 { background: rgba(59,158,255,0.15);  border-color: rgba(59,158,255,0.3);  }
.lp .fi-5 { background: rgba(232,82,58,0.15);   border-color: rgba(232,82,58,0.3);   }
.lp .flow-num { font-size: 0.68rem; font-weight: 700; color: var(--muted,#7A7A9A); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.lp .flow-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.lp .flow-desc { font-size: 0.78rem; color: var(--muted,#7A7A9A); }

/* ── Modules ──────────────────────────────────────────────────────────────── */
.lp .modules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.lp .module-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 32px; transition: border-color 0.3s, transform 0.3s; position: relative; overflow: hidden; }
.lp .module-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.lp .module-card:hover { transform: translateY(-4px); }
.lp .mc-purple::before { background: linear-gradient(90deg, var(--purple,#7C6FE8), var(--blue,#3B9EFF)); }
.lp .mc-purple:hover   { border-color: rgba(124,111,232,0.3); }
.lp .mc-green::before  { background: linear-gradient(90deg, var(--green,#22C97A), var(--blue,#3B9EFF)); }
.lp .mc-green:hover    { border-color: rgba(34,201,122,0.3); }
.lp .mc-blue::before   { background: linear-gradient(90deg, var(--blue,#3B9EFF), var(--purple,#7C6FE8)); }
.lp .mc-blue:hover     { border-color: rgba(59,158,255,0.3); }
.lp .mc-orange::before { background: linear-gradient(90deg, var(--orange,#F97316), var(--red,#E8523A)); }
.lp .mc-orange:hover   { border-color: rgba(249,115,22,0.3); }
.lp .module-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.lp .module-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.lp .mi-purple { background: rgba(124,111,232,0.15); } .lp .mi-green { background: rgba(34,201,122,0.15); }
.lp .mi-blue   { background: rgba(59,158,255,0.15);  } .lp .mi-orange{ background: rgba(249,115,22,0.15); }
.lp .module-name { font-weight: 700; font-size: 1.05rem; }
.lp .module-sub  { font-size: 0.78rem; color: var(--muted,#7A7A9A); }
.lp .module-desc { color: var(--muted,#7A7A9A); font-size: 0.9rem; margin-bottom: 20px; }
.lp .module-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lp .module-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; }
.lp .feature-check { color: var(--green,#22C97A); margin-top: 1px; flex-shrink: 0; }

/* ── Architecture ─────────────────────────────────────────────────────────── */
.lp .arch-bg { background: var(--bg2,#0E0E1A); border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); }
.lp .arch-diagram { margin-top: 56px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 40px; display: flex; flex-direction: column; gap: 32px; }
.lp .arch-row { display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; }
.lp .arch-node { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 20px; border-radius: 12px; border: 1px solid; min-width: 120px; text-align: center; transition: transform 0.2s; }
.lp .arch-node:hover { transform: scale(1.04); }
.lp .an-saas   { background: rgba(124,111,232,0.1); border-color: rgba(124,111,232,0.3); }
.lp .an-n8n    { background: rgba(34,201,122,0.1);  border-color: rgba(34,201,122,0.3);  }
.lp .an-source { background: rgba(95,94,90,0.15);   border-color: rgba(95,94,90,0.3);    }
.lp .an-target { background: rgba(249,115,22,0.1);  border-color: rgba(249,115,22,0.3);  }
.lp .an-ext    { background: rgba(232,82,58,0.1);   border-color: rgba(232,82,58,0.3);   }
.lp .an-git    { background: rgba(59,158,255,0.1);  border-color: rgba(59,158,255,0.3);  }
.lp .arch-node-icon { font-size: 20px; }
.lp .arch-node-name { font-size: 0.78rem; font-weight: 600; }
.lp .arch-node-sub  { font-size: 0.68rem; color: var(--muted,#7A7A9A); }
.lp .arch-arrow { color: var(--muted,#7A7A9A); font-size: 1.2rem; display: flex; align-items: center; gap: 4px; }
.lp .arch-arrow-label { font-size: 0.65rem; color: var(--muted,#7A7A9A); white-space: nowrap; }
.lp .arch-section-title { text-align: center; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted,#7A7A9A); margin-bottom: 12px; }
.lp .arch-layer { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.lp .arch-sublayer { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lp .arch-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.07); position: relative; }
.lp .arch-divider span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--bg2,#0E0E1A); padding: 0 12px; font-size: 0.68rem; color: var(--muted,#7A7A9A); white-space: nowrap; }

/* ── Integrations ─────────────────────────────────────────────────────────── */
.lp .integrations-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; }
.lp .integration-chip { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 10px 18px; font-size: 0.88rem; font-weight: 500; transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.lp .integration-chip:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }
.lp .chip-icon { font-size: 18px; }
.lp .chip-cat { font-size: 0.68rem; color: var(--muted,#7A7A9A); display: block; }

/* ── Stats ────────────────────────────────────────────────────────────────── */
.lp .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.lp .stat-card { text-align: center; padding: 32px 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; }
.lp .stat-value { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.04em; background: linear-gradient(135deg, var(--purple,#7C6FE8), var(--green,#22C97A)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lp .stat-label { color: var(--muted,#7A7A9A); font-size: 0.88rem; margin-top: 8px; }

/* ── CTA ──────────────────────────────────────────────────────────────────── */
.lp .cta-section { background: var(--bg2,#0E0E1A); border-top: 1px solid rgba(255,255,255,0.07); }
.lp .cta-card { background: linear-gradient(135deg, rgba(124,111,232,0.15) 0%, rgba(34,201,122,0.08) 50%, rgba(59,158,255,0.12) 100%); border: 1px solid rgba(124,111,232,0.25); border-radius: 24px; padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.lp .cta-card h2 { margin-bottom: 16px; }
.lp .cta-card p  { color: var(--muted,#7A7A9A); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.lp .cta-btns    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.lp footer { padding: 40px 24px; text-align: center; color: var(--muted,#7A7A9A); font-size: 0.82rem; border-top: 1px solid rgba(255,255,255,0.07); }
.lp .footer-logo { font-weight: 700; color: var(--text,#E8E8F0); margin-bottom: 8px; }

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes lp-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; transform: scale(1.3); }
}
@keyframes lp-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll reveal */
.lp .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.lp .reveal.visible { opacity: 1; transform: none; }

/* ── Cloud hosting section ────────────────────────────────────────────────── */
.lp .cloud-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(59,130,246,0.04) 50%, transparent);
}
.lp .cloud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.lp .cloud-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 14px;
  padding: 28px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.lp .cloud-card:hover {
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-3px);
}
.lp .cloud-card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.lp .cloud-card-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; color: #E8E8F0; }
.lp .cloud-card-desc { font-size: 0.82rem; color: var(--muted,#7A7A9A); line-height: 1.6; }

/* ── Product Builder section ──────────────────────────────────────────────── */
.lp .pb-section {
  background: linear-gradient(180deg, transparent, rgba(124,111,232,0.05) 50%, transparent);
}
.lp .tag-pink { background: rgba(236,72,153,0.15); color: #EC4899; }

.lp .pb-proof {
  margin-top: 28px;
  background: rgba(124,111,232,0.06);
  border: 1px solid rgba(124,111,232,0.2);
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.lp .pb-proof-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.lp .pb-proof-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--purple,#7C6FE8); margin-bottom: 6px;
}
.lp .pb-proof-text { font-size: 0.88rem; color: var(--muted,#7A7A9A); line-height: 1.6; }

/* ── Pricing section ──────────────────────────────────────────────────────── */
.lp .pricing-section { padding: 100px 0; }

.lp .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.lp .pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 32px 26px;
  position: relative;
  transition: border-color 0.2s;
}
.lp .pricing-card:hover { border-color: rgba(255,255,255,0.18); }

.lp .pricing-card-featured {
  background: rgba(124,111,232,0.07);
  border-color: rgba(124,111,232,0.35);
  box-shadow: 0 0 40px rgba(124,111,232,0.12), 0 0 0 1px rgba(124,111,232,0.2);
}
.lp .pricing-card-featured:hover { border-color: rgba(124,111,232,0.55); }

.lp .pricing-popular {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple,#7C6FE8), var(--purple-d,#534AB7));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 100px;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}

.lp .pricing-card-header { margin-bottom: 24px; }
.lp .pricing-icon { font-size: 2rem; margin-bottom: 10px; }
.lp .pricing-name { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.lp .pricing-sub { font-size: 0.8rem; color: var(--muted,#7A7A9A); }

.lp .pricing-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.lp .pricing-features li { font-size: 0.83rem; color: var(--muted,#7A7A9A); display: flex; align-items: center; gap: 8px; }

.lp .pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 0.82rem;
}
.lp .pricing-table th {
  text-align: left; padding: 7px 10px;
  color: var(--muted,#7A7A9A);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp .pricing-table td {
  padding: 10px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #E8E8F0;
}
.lp .pricing-table tr:last-child td { border-bottom: none; }
.lp .price-cell { font-weight: 700; font-size: 0.9rem; color: #E8E8F0; text-align: right; }
.lp .price-muted { color: var(--muted,#7A7A9A); text-align: right; font-size: 0.78rem; }
.lp .price-featured { color: var(--purple,#7C6FE8) !important; font-size: 1rem !important; }

.lp .pricing-cta {
  display: block; text-align: center; text-decoration: none;
  padding: 12px 20px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 700;
  transition: all 0.2s;
}
.lp .pricing-cta-primary {
  background: linear-gradient(135deg, var(--purple,#7C6FE8), var(--purple-d,#534AB7));
  color: #fff;
  box-shadow: 0 0 20px rgba(124,111,232,0.3);
}
.lp .pricing-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(124,111,232,0.5); }
.lp .pricing-cta-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted,#7A7A9A);
}
.lp .pricing-cta-secondary:hover { background: rgba(255,255,255,0.09); color: #E8E8F0; }

.lp .pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--muted,#7A7A9A);
  line-height: 1.7;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  .lp-nav { padding: 16px 20px; }
  .lp-nav-links { display: none; }
  .lp .flow-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lp .flow-connector { display: none; }
  .lp .flow-step::after { display: none; }
  .lp .modules-grid { grid-template-columns: 1fr; }
  .lp .stats-grid { grid-template-columns: repeat(2,1fr); }
  .lp .dashboard-body { grid-template-columns: 1fr; }
  .lp .dash-sidebar { display: none; }
  .lp .kpi-grid { grid-template-columns: 1fr 1fr; }
  .lp .cloud-grid { grid-template-columns: 1fr 1fr; }
  .lp .pricing-grid { grid-template-columns: 1fr; }
  .lp .pricing-card-featured { order: -1; }
}

