@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --bg: #06090e;
  --ink: #f1f5f9;
  --mute: #8e9db3;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #00f2fe;
  --accent2: #4facfe;
  --warn: #f59e0b;
  --ok: #10b981;
  --info: #3b82f6;
  --err: #f43f5e;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Outfit", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.landing-body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.landing-flash { position: fixed; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 50; width: min(480px, 92vw); }
.flash { padding: .8rem 1rem; border-radius: 12px; margin-bottom: .4rem; border: 1px solid var(--line); background: rgba(15, 23, 36, 0.9); backdrop-filter: blur(12px); }

.lp-nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  backdrop-filter: blur(20px);
  background: rgba(6, 9, 14, 0.85);
  border-bottom: 1px solid var(--line);
}
.lp-brand {
  font-family: var(--display); font-weight: 800; font-size: 1.5rem;
  color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.lp-brand span, .lp-brand-hero span { color: var(--accent); text-shadow: 0 0 15px rgba(0, 242, 254, 0.5); }
.lp-links { display: flex; gap: 1.5rem; align-items: center; }
.lp-links a { color: var(--mute); text-decoration: none; font-size: .95rem; font-weight: 500; transition: color .2s; }
.lp-links a:hover { color: #fff; }
.lp-nav-cta {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%) !important; color: #04121a !important;
  font-weight: 700; padding: .6rem 1.25rem; border-radius: 999px; box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.lp-nav-cta:hover { transform: translateY(-2px); filter: brightness(1.1); }

.lp-burger {
  display: none; background: transparent; border: 1px solid var(--line);
  color: var(--ink); border-radius: 8px; padding: .4rem .6rem; cursor: pointer;
}
.lp-mobile-nav {
  display: none; flex-direction: column; gap: .7rem;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(6, 9, 14, 0.96); border-bottom: 1px solid var(--line);
}
.lp-mobile-nav.is-open { display: flex; }
.lp-mobile-nav a { color: var(--ink); text-decoration: none; }

.lp-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 4vw, 3rem) 3.5rem;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(800px 420px at 85% 10%, rgba(0, 242, 254, 0.16), transparent 55%),
    radial-gradient(600px 360px at 0% 80%, rgba(127, 0, 255, 0.12), transparent 50%);
  animation: bgDrift 12s ease-in-out infinite alternate;
}
.lp-hero-copy, .lp-hero-visual { position: relative; z-index: 1; }
.lp-hero-copy { animation: rise .7s cubic-bezier(.2,.8,.2,1) both; }
.lp-brand-hero {
  margin: 0; font-family: var(--display);
  font-size: clamp(3.1rem, 7.2vw, 5.4rem); font-weight: 800;
  line-height: .92; letter-spacing: -.03em; color: #fff;
}
.lp-headline {
  margin: 1.15rem 0 .7rem; max-width: 28ch;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 600; color: #f1f5f9;
}
.lp-sub { margin: 0 0 1.6rem; color: var(--mute); max-width: 40ch; line-height: 1.6; font-size: 1.02rem; }
.lp-cta-row { display: flex; gap: .8rem; flex-wrap: wrap; }

.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 700; padding: .85rem 1.4rem; border-radius: 14px;
  background: linear-gradient(135deg, #00f2fe, #4facfe); color: #04121a;
  border: 1px solid transparent; box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
  transition: transform .18s ease, filter .18s ease;
}
.lp-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.lp-btn.ghost { background: rgba(255,255,255,0.04); color: var(--ink); border-color: var(--line); box-shadow: none; }
.lp-btn.ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--accent); }

.lp-hero-visual { animation: rise .85s .08s cubic-bezier(.2,.8,.2,1) both; }
.lp-stage { position: relative; }
.lp-glow {
  position: absolute; inset: 10% -5% -10%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.22), transparent 65%);
  filter: blur(40px); animation: glowPulse 4s ease-in-out infinite;
}
.lp-frame {
  position: relative;
  border: 1px solid var(--line); border-radius: 22px;
  background: rgba(15, 23, 36, 0.85); overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6); backdrop-filter: blur(20px);
}
.lp-frame-bar {
  display: flex; align-items: center; gap: .4rem;
  padding: .75rem 1.1rem; border-bottom: 1px solid var(--line);
  color: var(--mute); font-size: .8rem;
  background: rgba(4, 7, 12, 0.8);
}
.lp-frame-bar span { width: 9px; height: 9px; border-radius: 50%; background: #3a4a5e; }
.lp-frame-bar span:nth-child(1) { background: #f43f5e; }
.lp-frame-bar span:nth-child(2) { background: #f59e0b; }
.lp-frame-bar span:nth-child(3) { background: #10b981; }
.lp-frame-bar em { margin-left: auto; font-style: normal; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); font-weight: 700; }

.lp-pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  display: inline-block;
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 242, 254, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

.lp-post-card {
  padding: 1rem 1.25rem;
  background: rgba(6, 9, 14, 0.7);
  border-bottom: 1px solid var(--line);
}
.lp-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
}
.lp-post-meta strong {
  font-family: monospace;
  color: var(--accent);
  font-size: 0.9rem;
}
.lp-post-meta span {
  color: var(--mute);
  font-size: 0.8rem;
}

.lp-log-stream {
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.84rem;
  background: rgba(4, 7, 12, 0.95);
  max-height: 240px;
  overflow-y: auto;
}
.lp-log-line {
  display: grid;
  grid-template-columns: 50px 110px 75px 1fr;
  gap: 0.6rem;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}
.lp-log-line:hover {
  background: rgba(0, 242, 254, 0.06);
}
.lp-log-line span { color: var(--mute); }
.lp-log-line span:nth-child(2) { color: #fff; font-weight: 600; }
.lp-log-line b {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-align: center;
  text-transform: uppercase;
}
.lp-log-line b.success { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.lp-log-line b.info { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.lp-log-line b.error { background: rgba(244, 63, 94, 0.2); color: #f87171; border: 1px solid rgba(244, 63, 94, 0.3); }
.lp-log-line em { color: #94a3b8; font-style: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Stats Counter Horizontal Grid */
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.lp-stat-card {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 36, 0.72);
  backdrop-filter: blur(16px);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.lp-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 242, 254, 0.35);
}
.lp-stat-val {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.lp-stat-label {
  font-size: 0.88rem;
  color: var(--mute);
  margin-top: 0.4rem;
}

.lp-section { padding: 4.5rem clamp(1.2rem, 4vw, 3rem); max-width: 1200px; margin: 0 auto; }
.lp-section-head { max-width: 44rem; margin-bottom: 2.5rem; }
.lp-section-head h2 {
  margin: 0 0 .6rem; font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 2.7rem); font-weight: 800; color: #fff;
}
.lp-section-head p { margin: 0; color: var(--mute); line-height: 1.6; font-size: 1.05rem; }

.lp-steps, .lp-feature-rail, .lp-feature-6 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

/* 2 Side-by-side Pricing Cards */
.lp-price-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
}

.lp-step, .lp-feature-rail article, .lp-price {
  padding: 1.8rem; border-radius: 22px; border: 1px solid var(--line);
  background: rgba(15, 23, 36, 0.72); backdrop-filter: blur(16px);
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.lp-step:hover, .lp-feature-rail article:hover, .lp-price:hover {
  transform: translateY(-4px); border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.5);
}

.lp-step-num {
  font-family: var(--display); font-size: 2.2rem; font-weight: 800;
  color: var(--accent); margin-bottom: .4rem;
}
.lp-step h3, .lp-feature-rail h3, .lp-price h3 { margin: 0 0 .4rem; font-family: var(--display); color: #fff; font-size: 1.3rem; }
.lp-step p, .lp-feature-rail p { margin: 0; color: var(--mute); line-height: 1.55; font-size: 0.94rem; }

.lp-price.is-hot {
  border-color: rgba(0, 242, 254, 0.6);
  box-shadow: 0 25px 60px rgba(0, 242, 254, 0.18);
  background:
    radial-gradient(450px 200px at 50% 0%, rgba(0, 242, 254, 0.15), transparent 65%),
    rgba(15, 23, 36, 0.88);
}
.lp-price-num strong { font-family: var(--display); font-size: 2.9rem; font-weight: 800; color: #fff; }
.lp-price-num span { color: var(--mute); margin-left: .25rem; font-size: 0.95rem; }
.lp-price ul { list-style: none; padding: 0; margin: 1.2rem 0; flex: 1; }
.lp-price li {
  padding: .6rem 0; border-bottom: 1px solid var(--line);
  color: #d1d5db; font-size: .94rem; line-height: 1.45;
}
.lp-price .lp-btn { width: 100%; margin-top: 1rem; }

.lp-badge {
  display: inline-block;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #04121a;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
  align-self: flex-start;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.lp-faq-item {
  background: rgba(15, 23, 36, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 0.85rem;
  padding: 1.1rem 1.35rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lp-faq-item[open] {
  border-color: var(--accent);
  background: rgba(0, 242, 254, 0.04);
}
.lp-faq-item summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  cursor: pointer;
  outline: none;
}
.lp-faq-item p {
  margin: 0.85rem 0 0;
  color: var(--mute);
  line-height: 1.6;
  font-size: 0.96rem;
}

.lp-contact {
  background: radial-gradient(600px 300px at 0% 100%, rgba(127, 0, 255, 0.15), transparent 70%), rgba(15, 23, 36, 0.8);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.lp-contact-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.lp-foot {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  padding: 2rem clamp(1.2rem, 4vw, 3rem) 2.8rem;
  color: var(--mute); border-top: 1px solid var(--line);
}
.lp-foot a { color: var(--accent); text-decoration: none; font-size: 0.92rem; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes glowPulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes bgDrift { from { transform: translate3d(0,0,0); } to { transform: translate3d(-2%, 2%, 0); } }

@media (max-width: 980px) {
  .lp-links { display: none; }
  .lp-burger { display: inline-flex; }
  .lp-hero, .lp-steps, .lp-feature-rail, .lp-feature-6, .lp-stats-grid, .lp-price-grid-2 { grid-template-columns: 1fr; }
}
