:root {
  /* Stripe-inspired Palette */
  --color-primary: #635bff;
  --color-primary-dark: #3a33d1;
  --color-accent: #00d4ff;
  --color-text-dark: #0a2540;
  --color-text-main: #425466;
  --color-text-light: #697386;
  --color-bg-white: #ffffff;
  --color-bg-off-white: #f6f9fc;
  
  /* Gradientes Mesh */
  --gradient-mesh: radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
                   radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
                   radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);

  --pds-shadow-soft: 0 50px 100px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
  --pds-radius-xl: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg-white);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
  color: var(--color-text-dark);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, #0a2540 0%, #635bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 120px 0;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

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

.logo {
  font-weight: 800;
  font-size: 24px;
  color: var(--color-text-dark);
}

@media (max-width: 600px) {
  .nav-links { display: none; }
}

/* Hero Section */
.hero {
  position: relative;
  background-color: #f6f9fc;
  padding-top: 200px;
  padding-bottom: 200px;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, #635bff 0%, #f6f9fc 70%);
  opacity: 0.1;
  filter: blur(100px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(32px, 8vw, 72px);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero p {
  font-size: 20px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(99, 91, 255, 0.39);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 91, 255, 0.23);
}

/* Live Dashboard Preview (Real CSS/HTML) */
.dashboard-preview {
  margin-top: 40px;
  background: white;
  border-radius: var(--pds-radius-xl);
  padding: clamp(12px, 3vw, 24px);
  box-shadow: var(--pds-shadow-soft);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transform: perspective(1000px) rotateX(5deg);
}

.dashboard-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stage {
  background: #f8fafc;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed #e2e8f0;
}

.card-preview {
  background: white;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 8px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-item {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #f0f4f8;
  transition: all 0.3s ease;
}

.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--pds-shadow-soft);
}

.bento-item icon, .bento-item i {
  display: block;
  margin-bottom: 16px;
  font-size: 24px;
}

/* Disclosure */
.disclosure {
  background: #0a2540;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.disclosure h2 { color: white; margin-bottom: 24px; }

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 48px; }
  .pipeline { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
}
