/* landing.css - Home Page Specific Styles */

.hero {
  padding: 80px 0 100px;
  background: radial-gradient(circle at 50% -20%, rgba(37, 99, 235, 0.08) 0%, var(--bg) 60%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
}

.hero .heading-xl {
  margin-bottom: 24px;
}

.hero .text-lead {
  margin-bottom: 40px;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── PRODUCT MOCKUP (CSS rendered) ── */
.mockup-wrapper {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}

/* Subtle floating animation */
@keyframes float {
  0% { transform: translateY(0px) rotateX(5deg) rotateY(-5deg); }
  50% { transform: translateY(-15px) rotateX(5deg) rotateY(-5deg); }
  100% { transform: translateY(0px) rotateX(5deg) rotateY(-5deg); }
}

.extension-mockup {
  background: white;
  border-radius: 12px;
  width: 340px;
  height: 480px;
  box-shadow: 
    -20px 20px 40px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.05 inset),
    0 0 0 8px rgba(255,255,255,0.4);
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mockup-header {
  height: 50px;
  background: #0F172A;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 700;
  font-size: 0.9rem;
  gap: 8px;
}

.mockup-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.mockup-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #F8FAFC;
}

.mockup-stat-row {
  display: flex;
  gap: 12px;
}

.mockup-stat {
  flex: 1;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.mockup-stat-val { font-size: 1.2rem; font-weight: 800; color: #2563EB; }
.mockup-stat-lbl { font-size: 0.65rem; color: #64748B; font-weight: 600; text-transform: uppercase; }

.mockup-logs {
  flex: 1;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-log {
  font-size: 0.75rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: #F1F5F9;
  border-radius: 4px;
}

/* Feature Highlights */
.features-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #1D4ED8);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

/* ROI Banner */
.roi-banner {
  background: #0F172A;
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  color: white;
  text-align: center;
  margin: 80px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

/* Sweeping gradient mask border effect */
.roi-banner::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(90deg, #3B82F6, #10B981, #3B82F6);
  background-size: 200% auto;
  z-index: 0;
  animation: shine 3s linear infinite;
  border-radius: calc(var(--radius-xl) + 2px);
}
.roi-banner-inner {
  position: relative;
  z-index: 1;
  background: #0F172A;
  padding: 64px 40px;
  border-radius: var(--radius-xl);
  margin: -62px -38px; /* account for padding */
}

@keyframes shine {
  to { background-position: 200% center; }
}

.roi-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #60A5FA, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: linear-gradient(180deg, #EFF6FF 0%, white 100%);
  z-index: -1;
}

@media (max-width: 900px) {
  .features-preview { grid-template-columns: 1fr; }
  .roi-stats { flex-direction: column; gap: 32px; }
  .roi-banner-inner { padding: 40px 20px; }
}
