/* ===== HOME PAGE — Custom Styles ===== */
/* Distinct from Venturerize: No grid, no particles, no bento, no marquee */
/* Uses gradient blurs, split layouts, timeline, and warm amber palette */

/* ---------- Hero with Gradient Blurs ---------- */
.home-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    var(--bg-primary);
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 45%;
  height: 100%;
  transform: translateY(-50%);
  background: 
    radial-gradient(circle at 60% 40%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.home-hero .hero-content {
  max-width: 600px;
}

.home-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

/* Hero right panel — abstract shape */
.hero-visual {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.1);
  animation: ringPulse 8s ease-in-out infinite;
}

.hero-ring-1 {
  inset: 0;
  animation-delay: 0s;
}

.hero-ring-2 {
  inset: 40px;
  border-color: rgba(59, 130, 246, 0.06);
  animation-delay: -2s;
}

.hero-ring-3 {
  inset: 80px;
  border-color: rgba(59, 130, 246, 0.04);
  animation-delay: -4s;
}

.hero-ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.6; }
}

/* Hero badge */
.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 4px;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero social proof */
.hero-proof {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
}

.proof-item {
  display: flex;
  flex-direction: column;
}

.proof-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Horizontal Divider Section ---------- */
.divider-section {
  padding: 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.divider-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 20px 0;
}

.divider-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.divider-item svg {
  opacity: 0.4;
}

/* ---------- Split Feature Section ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-text .section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.split-text h2 {
  margin-bottom: 16px;
}

.split-text p {
  margin-bottom: 28px;
}

.split-visual {
  position: relative;
}

/* Feature list with left accent border */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
  transition: all var(--transition-mid);
}

.feature-list-item:hover {
  transform: translateX(4px);
  border-color: var(--border-hover);
  border-left-color: var(--accent);
}

.feature-list-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-list-content h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-list-content p {
  font-size: 0.82rem;
}

/* ---------- Timeline Process ---------- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--border-color));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content {
  padding-top: 8px;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.9rem;
}

/* ---------- Services Row ---------- */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-mid);
}

.service-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.service-tile:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-tile:hover::before {
  opacity: 1;
}

.service-tile-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-tile h3 {
  margin-bottom: 10px;
}

.service-tile p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.service-tile-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.service-tile-link:hover {
  text-decoration: underline;
}

/* ---------- Full-width CTA ---------- */
.home-cta {
  text-align: center;
  padding: 80px 0;
  background: 
    radial-gradient(ellipse 50% 100% at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 70%),
    var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.home-cta h2 {
  margin-bottom: 14px;
}

.home-cta p {
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-row { grid-template-columns: 1fr; }
  .divider-row { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 768px) {
  .hero-proof {
    flex-direction: column;
    gap: 16px;
  }
  .hero-proof .proof-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}
