/* LazyunCrab Marketing Site — Page-Specific Styles */

/* ─── Scroll Progress Bar ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 200;
  width: 0%; background: linear-gradient(90deg, #22d3ee, #60a5fa, #38bdf8);
  transition: width 0.1s linear; box-shadow: 0 0 8px rgba(34,211,238,0.4);
}

/* ─── Cursor Glow ─── */
.cursor-glow {
  position: fixed; width: 300px; height: 300px; border-radius: 50%;
  pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(34,211,238,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%); transition: opacity 0.3s ease;
  opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* ─── Mission Banner ─── */
.mission-banner {
  max-width: 800px; margin: 0 auto; padding: 48px 32px; text-align: center;
  background: linear-gradient(135deg, rgba(34,211,238,0.06), rgba(96,165,250,0.04));
  border: 1px solid var(--border); border-radius: var(--radius);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  position: relative; overflow: hidden;
}
.mission-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.4), rgba(96,165,250,0.4), transparent);
}
.mission-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.2), transparent);
}
.mission-lines { position: relative; z-index: 1; }
.mission-line {
  font-size: 22px; font-weight: 600; letter-spacing: 2px; line-height: 1.8;
  background: linear-gradient(135deg, #22d3ee, #60a5fa, #38bdf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: missionShimmer 3s ease-in-out infinite;
  background-size: 200% 200%;
}
@keyframes missionShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.mission-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 0; position: relative;
}
.mission-divider::before, .mission-divider::after {
  content: ''; flex: 1; max-width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.30), transparent);
}
.mission-dot {
  width: 6px; height: 6px; border-radius: 50%; margin: 0 12px;
  background: rgba(34,211,238,0.6); box-shadow: 0 0 12px rgba(34,211,238,0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 1; }
}
@media (max-width: 768px) {
  .mission-banner { padding: 32px 20px; }
  .mission-line { font-size: 16px; letter-spacing: 1px; }
  .mission-divider::before, .mission-divider::after { max-width: 60px; }
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(15,33,60,0.85); backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--border);
  color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px); transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { border-color: var(--border-glow); box-shadow: var(--shadow-deep), 0 0 16px rgba(34,211,238,0.15); }
.back-to-top svg { width: 20px; height: 20px; }

/* ─── Global Navigation ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 32px; display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(10, 22, 40, 0.90); backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur); border-bottom: 1px solid var(--border);
  padding: 10px 32px; box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.site-nav::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.20), transparent);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700;
  background: linear-gradient(135deg, #22d3ee, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative; z-index: 101;
}
.nav-logo img, .nav-logo svg { width: 32px; height: 32px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; color: var(--text2); font-size: 14px;
  font-weight: 500; transition: all 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(34,211,238,0.06); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.lang-toggle button {
  padding: 6px 10px; border: none; background: transparent; color: var(--text2);
  font-size: 12px; cursor: pointer; transition: all 0.2s ease; font-family: var(--font);
}
.lang-toggle button.active {
  background: rgba(34,211,238,0.15); color: var(--primary-h);
}
.hamburger {
  display: none; background: none; border: none; color: var(--text);
  cursor: pointer; padding: 8px;
}
.hamburger svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: rgba(10,22,40,0.97);
    backdrop-filter: var(--glass-blur); padding: 16px;
    border-bottom: 1px solid var(--border);
  }
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border); padding: 48px 24px 24px;
  position: relative; z-index: 1;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--glow-top);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto;
}
.footer-brand p { color: var(--text2); font-size: 14px; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 13px; color: var(--text2); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; color: var(--text2); font-size: 14px; padding: 4px 0; }
.footer-col a:hover { color: var(--primary-h); }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0; padding-top: 20px;
  border-top: 1px solid var(--border); font-size: 13px; color: var(--text2);
  display: flex; justify-content: space-between; align-items: center;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── Hero Section ─── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 100px 32px 60px; position: relative; overflow: hidden; gap: 48px;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-content {
  max-width: 720px; text-align: center; position: relative; z-index: 1;
}
.hero h1 {
  font-size: 48px; margin-bottom: 20px; line-height: 1.15;
  animation: heroTitleIn 0.8s ease backwards;
}
@keyframes heroTitleIn { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: translateY(0) } }

.hero p {
  font-size: 18px; color: var(--text2); max-width: 540px; margin: 0 auto 32px;
  line-height: 1.7; animation: heroFadeIn 1s 0.2s ease backwards;
}
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(12px) } to { opacity: 1; transform: translateY(0) } }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: heroFadeIn 1s 0.4s ease backwards; }

.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none; z-index: 0;
}
.hero-glow.g1 { width: 500px; height: 350px; top: 10%; left: 15%; background: rgba(34,211,238,0.10); }
.hero-glow.g2 { width: 400px; height: 300px; bottom: 15%; right: 10%; background: rgba(56,189,248,0.08); }

/* Hero Preview Window */
.hero-preview {
  max-width: 1050px; width: 100%; margin: 0; position: relative; z-index: 1;
  perspective: 1000px;
  animation: heroFadeIn 1s 0.6s ease backwards;
}
.preview-window {
  background: rgba(10, 22, 40, 0.92); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(34,211,238,0.08);
  transform: rotateX(4deg); transition: transform 0.4s ease;
  height: 440px;
}
.preview-window:hover { transform: rotateX(0deg); }
.preview-header {
  display: flex; align-items: center; gap: 10px; padding: 14px 20px;
  background: rgba(0,0,0,0.35); border-bottom: 1px solid var(--border);
}
.preview-logo { flex-shrink: 0; }
.preview-title { font-size: 13px; color: var(--text2); }
.preview-body { display: flex; height: calc(100% - 50px); }
.preview-sidebar {
  width: 150px; padding: 16px 0; background: rgba(0,0,0,0.2);
  border-right: 1px solid var(--border); flex-shrink: 0; overflow-y: auto;
}
.preview-nav-item {
  padding: 10px 18px; font-size: 13px; color: var(--text2);
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  transition: all 0.2s ease; border: none; background: none; width: 100%;
  font-family: var(--font); text-align: left;
}
.preview-nav-item:hover { color: var(--text); background: rgba(34,211,238,0.05); }
.preview-nav-item span { width: 4px; height: 4px; border-radius: 50%; background: var(--text2); opacity: 0.3; transition: all 0.2s ease; }
.preview-nav-item.active { color: var(--primary-h); background: rgba(34,211,238,0.08); }
.preview-nav-item.active span { background: var(--primary); opacity: 1; box-shadow: 0 0 4px var(--primary); }

/* Page system */
.preview-main { flex: 1; padding: 20px; overflow-y: auto; }
.preview-page {
  display: none; flex-direction: column;
  height: 100%;
}
.preview-page.active { display: flex; }
.preview-stats { display: flex; gap: 14px; margin-bottom: 20px; }
.mini-stat {
  flex: 1; padding: 14px; border-radius: 8px; background: rgba(34,211,238,0.04);
  border: 1px solid rgba(34,211,238,0.10); text-align: center;
}
.mini-label { font-size: 11px; color: var(--text2); display: block; margin-bottom: 4px; }
.mini-value { font-size: 20px; font-weight: 700; color: var(--primary-h); }
.preview-chart { margin-bottom: 14px; }
.chart-bars {
  display: flex; align-items: flex-end; gap: 6px; height: 90px; padding: 0 4px;
}
.chart-bar {
  flex: 1; border-radius: 3px 3px 0 0; min-height: 8px;
  background: linear-gradient(to top, rgba(34,211,238,0.3), rgba(34,211,238,0.8));
  transition: height 0.5s ease;
}
.chart-bar:nth-child(even) { background: linear-gradient(to top, rgba(96,165,250,0.3), rgba(96,165,250,0.7)); }
.preview-table { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.table-row {
  display: flex; padding: 10px 12px; font-size: 12px; gap: 12px;
  border-bottom: 1px solid var(--border); align-items: center;
}
.table-row:last-child { border-bottom: none; }
.table-row span:first-child { flex: 1; }
.table-row span { color: var(--text2); }
.table-head { background: rgba(34,211,238,0.04); }
.table-head span { color: var(--text); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.status-tag {
  padding: 1px 8px; border-radius: 4px; font-size: 10px; font-weight: 600;
}
.status-tag.active { background: rgba(34,197,94,0.15); color: #22c55e; }
.status-tag.standby { background: rgba(140,170,210,0.10); color: rgba(140,170,210,0.6); }

/* Prompt list page */
.preview-prompt-list { display: flex; flex-direction: column; gap: 10px; }
.prompt-item {
  background: rgba(34,211,238,0.03); border: 1px solid rgba(34,211,238,0.08);
  border-radius: 8px; padding: 12px; transition: border-color 0.2s ease;
}
.prompt-item:hover { border-color: rgba(34,211,238,0.25); }
.prompt-item-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.prompt-layer-badge {
  font-size: 9px; font-weight: 600; padding: 2px 8px; border-radius: 4px; text-transform: uppercase;
}
.layer-system { background: rgba(34,211,238,0.15); color: var(--primary-h); }
.layer-function { background: rgba(168,85,247,0.15); color: #a855f7; }
.layer-business { background: rgba(251,191,36,0.15); color: #fbbf24; }
.prompt-name { font-size: 11px; font-weight: 600; color: var(--text); }
.prompt-preview { font-size: 10px; color: var(--text2); line-height: 1.4; }

/* Models page */
.preview-model-list { display: flex; flex-direction: column; gap: 8px; }
.model-row {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  border-radius: 8px; background: rgba(34,211,238,0.03);
  border: 1px solid rgba(34,211,238,0.08);
}
.model-row.active-model { border-color: rgba(34,197,94,0.20); background: rgba(34,197,94,0.04); }
.model-name { font-size: 12px; font-weight: 600; color: var(--text); flex: 1; }
.model-provider { font-size: 10px; color: var(--text2); }
.model-status-tag {
  font-size: 9px; font-weight: 600; padding: 2px 8px; border-radius: 4px;
  background: rgba(34,197,94,0.15); color: #22c55e;
}
.model-status-tag.model-standby {
  background: rgba(140,170,210,0.10); color: rgba(140,170,210,0.6);
}

/* Tools page */
.preview-tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tool-chip {
  padding: 12px 14px; border-radius: 8px; font-size: 12px; color: var(--text2);
  background: rgba(34,211,238,0.03); border: 1px solid rgba(34,211,238,0.08);
  display: flex; align-items: center; gap: 6px;
}
.tool-chip.active { border-color: rgba(34,211,238,0.25); color: var(--text); }
.tool-chip.active::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 4px var(--primary); margin-left: auto;
}

/* Billing page */
.preview-billing-list { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.billing-row {
  display: flex; justify-content: space-between; padding: 9px 12px;
  border-radius: 6px; font-size: 11px;
  border: 1px solid rgba(34,211,238,0.06);
}
.billing-time { color: var(--text2); }
.billing-amount { font-weight: 600; color: #f87171; }
.billing-row.billing-recharge { background: rgba(34,197,94,0.05); }
.billing-recharge-amount { color: #22c55e !important; }

@media (max-width: 768px) {
  .hero-preview { display: none; }
  .preview-sidebar { width: 80px; }
  .preview-nav-item { padding: 6px 8px; font-size: 10px; }
  .preview-main { padding: 10px; }
  .preview-stats { flex-direction: column; gap: 8px; }
  .mini-value { font-size: 14px; }
}

/* Typing effect */
.typing-cursor::after {
  content: '|'; animation: blink 1s step-end infinite; color: var(--primary);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .hero { min-height: 80vh; padding: 100px 16px 60px; }
}

/* ─── Social Proof ─── */
.social-proof {
  padding: 40px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.12);
}
.social-proof .container { text-align: center; }
.social-proof p { font-size: 14px; color: var(--text2); margin-bottom: 20px; }
.provider-logos {
  display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap;
}
.provider-logos span {
  font-size: 16px; font-weight: 600; color: rgba(140,170,210,0.5);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.provider-logos span:hover { color: var(--primary-h); text-shadow: 0 0 12px rgba(34,211,238,0.3); }

/* ─── Interactive Feature Cards ─── */
.feature-card-interactive {
  cursor: pointer; position: relative;
}
.feature-card-interactive .feature-detail {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0; margin-top: 0;
}
.feature-card-interactive:hover .feature-detail {
  max-height: 200px; opacity: 1; margin-top: 12px;
}
.feature-card-interactive .feature-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-card-interactive .feature-tags span {
  padding: 3px 8px; border-radius: 6px; font-size: 11px;
  background: rgba(34,211,238,0.10); border: 1px solid rgba(34,211,238,0.15);
  color: var(--primary-h);
}

/* ─── Steps / How It Works ─── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  text-align: center; padding: 32px 24px; position: relative;
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(34,211,238,0.12); border: 2px solid rgba(34,211,238,0.30);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--primary-h);
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text2); }
.step-connector {
  position: absolute; top: 56px; right: -12px; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

/* Modern Steps */
.steps-modern { align-items: flex-start; }
.step-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: rgba(34,211,238,0.06); border: 1px solid rgba(34,211,238,0.15);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.step-icon svg { width: 28px; height: 28px; }
.step:hover .step-icon {
  border-color: rgba(34,211,238,0.40);
  box-shadow: 0 0 32px rgba(34,211,238,0.12);
  background: rgba(34,211,238,0.10);
}
.step-connector-line {
  display: flex; align-items: center; justify-content: center;
  padding-top: 16px; color: var(--primary); font-size: 18px; opacity: 0.4;
}
@media (max-width: 768px) {
  .steps-modern { grid-template-columns: 1fr; gap: 24px; }
  .step-connector-line { display: none; }
}
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

/* ─── Pipeline (How It Works — Premium) ─── */
.pipeline-section .section-subtitle { margin-bottom: 48px; }
.pipeline-track {
  display: flex; align-items: stretch; gap: 0; position: relative;
  justify-content: center; flex-wrap: wrap;
}

/* Animated pipeline line */
.pipeline-line {
  position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
  background: rgba(34,211,238,0.12); border-radius: 1px; z-index: 0;
  overflow: visible;
}
.pipeline-flow-dot {
  position: absolute; top: -3px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 12px rgba(34,211,238,0.6);
  animation: pipelineFlow 2s ease-in-out infinite;
}
@keyframes pipelineFlow {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

.pipeline-node {
  position: relative; z-index: 1; flex: 1; min-width: 180px; max-width: 220px;
  display: flex; flex-direction: column; align-items: center; padding: 0 6px;
}
.pipeline-card {
  background: rgba(10,22,40,0.85); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 18px 20px; width: 100%;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  text-align: center; position: relative;
  transition: all 0.35s ease;
}
.pipeline-card:hover {
  border-color: rgba(34,211,238,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 24px rgba(34,211,238,0.10);
  transform: translateY(-4px);
}
.pipeline-card-glow {
  border-color: rgba(34,197,94,0.30) !important;
}
.pipeline-card-glow:hover {
  border-color: rgba(34,197,94,0.50) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 32px rgba(34,197,94,0.12) !important;
}

.pipeline-step-badge {
  position: absolute; top: -10px; left: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  background: linear-gradient(135deg, rgba(34,211,238,0.20), rgba(96,165,250,0.15));
  border: 1px solid rgba(34,211,238,0.25); color: var(--primary-h);
  padding: 2px 10px; border-radius: 6px;
}
.pipeline-step-badge.step-done {
  background: linear-gradient(135deg, rgba(34,197,94,0.20), rgba(34,197,94,0.10));
  border-color: rgba(34,197,94,0.30); color: #22c55e;
}

.pipeline-icon-wrap {
  width: 52px; height: 52px; margin: 8px auto 14px;
  background: rgba(34,211,238,0.06); border: 1px solid rgba(34,211,238,0.12);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  transition: all 0.35s ease;
}
.pipeline-icon-wrap svg { width: 24px; height: 24px; }
.pipeline-card:hover .pipeline-icon-wrap {
  background: rgba(34,211,238,0.10);
  border-color: rgba(34,211,238,0.30);
  box-shadow: 0 0 20px rgba(34,211,238,0.10);
}
.pipeline-icon-glow {
  background: rgba(34,197,94,0.08) !important;
  border-color: rgba(34,197,94,0.20) !important;
}

.pipeline-card h4 {
  font-size: 15px; font-weight: 600; margin: 0 0 6px; color: var(--text);
}
.pipeline-card > p {
  font-size: 12px; color: var(--text2); margin: 0 0 12px; line-height: 1.5;
}
.pipeline-substeps {
  list-style: none; margin: 0; padding: 0; text-align: left;
  border-top: 1px solid rgba(34,211,238,0.08); padding-top: 10px;
}
.pipeline-substeps li {
  font-size: 11px; color: var(--text2); padding: 3px 0;
  display: flex; align-items: center; gap: 6px;
}
.pipeline-substeps li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; opacity: 0.6;
}

.pipeline-hint {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 32px; padding: 12px 20px;
  background: rgba(34,211,238,0.04); border: 1px solid rgba(34,211,238,0.10);
  border-radius: 10px; font-size: 13px; color: var(--text2);
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.pipeline-hint a { text-decoration: none; }
.pipeline-hint a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .pipeline-track { flex-direction: column; align-items: center; gap: 16px; }
  .pipeline-line { display: none; }
  .pipeline-node { max-width: 360px; width: 100%; }
}

/* ─── Pricing Cards ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--card); backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-card);
  position: relative; overflow: hidden; transition: all 0.3s ease;
}
.pricing-card.popular {
  border-color: rgba(34,211,238,0.40);
  box-shadow: var(--shadow-deep), 0 0 48px rgba(34,211,238,0.15);
}
.pricing-card.popular::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #22d3ee, #60a5fa, #22d3ee);
}
.pricing-card .popular-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, rgba(34,211,238,0.25), rgba(96,165,250,0.20));
  color: var(--primary-h); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 12px;
}
.pricing-card h3 { font-size: 20px; margin-bottom: 4px; }
.pricing-card .price {
  font-size: 36px; font-weight: 700; margin: 16px 0; color: var(--primary-h);
}
.pricing-card .price span { font-size: 14px; color: var(--text2); font-weight: 400; }
.pricing-card .desc { font-size: 14px; color: var(--text2); margin-bottom: 24px; }
.pricing-card ul { list-style: none; margin-bottom: 24px; }
.pricing-card ul li {
  padding: 8px 0; font-size: 14px; color: var(--text2);
  display: flex; align-items: center; gap: 8px;
}
.pricing-card ul li::before {
  content: '✓'; color: var(--success); font-weight: 700; font-size: 12px;
  width: 18px; height: 18px; background: rgba(34,197,94,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(96,165,250,0.08));
  border: 1px solid var(--border-glow); border-radius: var(--radius);
  padding: 60px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--glow-gold);
}
.cta-banner h2 { font-size: 32px; margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: var(--text2); margin-bottom: 24px; }

/* ─── Newsletter ─── */
.newsletter {
  max-width: 480px; margin: 32px auto 0; text-align: center;
}
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border-radius: 8px;
  background: rgba(17,24,39,0.55); border: 1px solid var(--border);
  color: var(--text); font-size: 14px; outline: none; font-family: var(--font);
  transition: border-color 0.25s ease;
}
.newsletter-form input:focus { border-color: rgba(34,211,238,0.55); box-shadow: 0 0 20px rgba(34,211,238,0.12); }
@media (max-width: 480px) { .newsletter-form { flex-direction: column; } }

/* ─── Features Page ─── */
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 60px 0;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-visual {
  background: var(--card); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; display: flex; align-items: center; justify-content: center;
  min-height: 300px; position: relative; overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-visual:hover {
  border-color: rgba(34,211,238,0.30);
  box-shadow: 0 0 32px rgba(34,211,238,0.10);
}
.feature-visual::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--glow-top);
}
.feature-visual svg { width: 120px; height: 120px; stroke: var(--primary); stroke-width: 1; fill: none; opacity: 0.8; }
.feature-text h2 { font-size: 28px; margin-bottom: 12px; }
.feature-text p { font-size: 15px; color: var(--text2); margin-bottom: 20px; line-height: 1.7; }
.feature-text ul { list-style: none; }
.feature-text ul li {
  padding: 6px 0; font-size: 14px; color: var(--text2);
  display: flex; align-items: flex-start; gap: 10px;
}
.feature-text ul li::before {
  content: '→'; color: var(--primary); font-weight: 600; flex-shrink: 0;
}
@media (max-width: 768px) {
  .feature-block, .feature-block.reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px;
  background: var(--card); backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur); overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item:hover { border-color: rgba(34,211,238,0.25); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; cursor: pointer; font-size: 15px; font-weight: 600;
  background: none; border: none; color: var(--text); width: 100%;
  text-align: left; font-family: var(--font);
}
.faq-question::after {
  content: '+'; font-size: 18px; color: var(--primary); transition: transform 0.2s ease;
  flex-shrink: 0; margin-left: 12px;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 16px; }
.faq-answer p { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ─── About Page ─── */
.about-hero { text-align: center; padding: 60px 0 40px; }
.about-hero h1 { font-size: 40px; margin-bottom: 16px; }
.about-hero p { font-size: 16px; color: var(--text2); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.about-content { max-width: 720px; margin: 0 auto; }
.about-content p { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 20px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tech-tags span {
  padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500;
  background: rgba(34,211,238,0.10); border: 1px solid rgba(34,211,238,0.20);
  color: var(--primary-h);
}

/* ─── Architecture Diagram ─── */
.arch-diagram { max-width: 700px; margin: 0 auto; }
.arch-layer {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.arch-badge {
  display: inline-block; font-size: 12px; font-weight: 600; color: var(--primary-h);
  background: rgba(34,211,238,0.10); padding: 2px 10px; border-radius: 4px;
  margin-bottom: 8px;
}
.arch-items { display: flex; flex-wrap: wrap; gap: 12px; }
.arch-items span {
  font-size: 13px; color: var(--text2); padding: 4px 10px;
  background: rgba(34,211,238,0.05); border: 1px solid rgba(34,211,238,0.10);
  border-radius: 6px;
}
.arch-arrow {
  text-align: center; font-size: 18px; color: var(--primary);
  padding: 6px 0; opacity: 0.6;
}

/* ─── Security Grid ─── */
.security-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 900px; margin: 0 auto;
}
.security-item { text-align: center; padding: 24px 16px; }
.security-item .security-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.security-item h4 { font-size: 15px; margin-bottom: 8px; }
.security-item p { font-size: 13px; color: var(--text2); line-height: 1.6; }
@media (max-width: 768px) {
  .security-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ─── Integrations Grid ─── */
.integrations-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 800px; margin: 0 auto;
}
.integration-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; text-align: center; backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.integration-card:hover {
  border-color: rgba(34,211,238,0.30); box-shadow: 0 0 24px rgba(34,211,238,0.08);
  transform: translateY(-2px);
}
.integration-name { font-size: 15px; font-weight: 600; display: block; margin-bottom: 4px; }
.integration-type { font-size: 12px; color: var(--text2); }
@media (max-width: 768px) {
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
}
