/* ═══════════════════════════════════════════════════════════
   VERBATIM — Homepage Section Styles  ·  Minimalist Modern
═══════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────
   HERO
─────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--deep);
  display: flex; align-items: center;
  padding-top: var(--nav-height);
  position: relative; overflow: hidden;
}

/* Subtle dot-grid background */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,82,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Soft radial glow */
.hero-glow {
  position: absolute; top: 20%; right: 5%;
  width: 640px; height: 640px;
  background: radial-gradient(ellipse at center, rgba(0,82,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Hero inner layout ── */
.hero-inner {
  display: grid; gap: var(--space-16);
  grid-template-columns: 1fr;
  align-items: center;
  padding: var(--space-20) 0;
  position: relative; z-index: 1;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: var(--space-12); }
}

.hero-content {
  display: flex; flex-direction: column;
  align-items: flex-start; text-align: left;
  gap: var(--space-6);
}
@media (max-width: 959px) {
  .hero-content { align-items: center; text-align: center; }
}

.hero-h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 400; line-height: 1.1;
  color: var(--text-primary); max-width: 640px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary); max-width: 520px; line-height: 1.75;
}

.hero-ctas {
  display: flex; align-items: center; gap: var(--space-4);
  flex-wrap: wrap;
}
@media (max-width: 959px) { .hero-ctas { justify-content: center; } }

/* Social proof strip */
.hero-social-proof {
  margin-top: var(--space-4);
  border-top: 1px solid var(--border);
  padding-top: var(--space-6);
  display: flex; align-items: center; gap: var(--space-5);
  flex-wrap: wrap;
}
@media (max-width: 959px) { .hero-social-proof { justify-content: center; } }
.hero-social-proof-text { font-size: 13px; color: var(--text-muted); font-family: var(--font-mono); }
.hero-logos { display: flex; align-items: center; gap: var(--space-4); }
.logo-placeholder {
  width: 72px; height: 24px; background: var(--border);
  border-radius: var(--radius-sm); opacity: 0.6;
}

/* ── Hero Graphic ── */
.hero-graphic {
  position: relative; display: flex; align-items: center; justify-content: center;
  height: 480px;
}
@media (max-width: 959px) { .hero-graphic { height: 360px; } }

/* Central orb */
.hero-orb {
  position: absolute;
  width: 160px; height: 160px;
  background: var(--gradient-accent);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(0,82,255,0.3), 0 0 160px rgba(0,82,255,0.1);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.hero-orb-inner {
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  color: #FFFFFF; letter-spacing: 0.02em;
}

/* Rotating rings */
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(0,82,255,0.15);
}
.hero-ring-1 {
  width: 260px; height: 260px;
  animation: ring-spin 12s linear infinite;
}
.hero-ring-2 {
  width: 380px; height: 380px;
  border-color: rgba(0,82,255,0.09);
  animation: ring-spin 20s linear infinite reverse;
}
.hero-ring-3 {
  width: 500px; height: 500px;
  border-color: rgba(0,82,255,0.05);
  animation: ring-spin 30s linear infinite;
}

/* Ring dot accents */
.hero-ring-1::before,
.hero-ring-2::before,
.hero-ring-3::before {
  content: '';
  position: absolute; top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,82,255,0.5);
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Floating UI cards */
.hero-float-card {
  position: absolute; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 12px 16px; box-shadow: var(--shadow-md);
  z-index: 4; white-space: nowrap;
}
.hero-float-card-label {
  font-size: 11px; font-family: var(--font-mono); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px;
}
.hero-float-card-value {
  font-size: 18px; font-weight: 700; font-family: var(--font-display);
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-fc-1 { top: 12%; right: 6%; animation: float-up 5s ease-in-out infinite; }
.hero-fc-2 { bottom: 18%; left: 4%; animation: float-down 6s ease-in-out infinite; }
.hero-fc-3 { top: 52%; right: 2%; animation: float-up 7s ease-in-out infinite 1s; }

@keyframes float-up {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes float-down {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(10px); }
}

/* ───────────────────────────────────────────────────────────
   PHILOSOPHY
─────────────────────────────────────────────────────────── */
#philosophy { background: var(--surface-raised); }

.philosophy-text { max-width: 760px; margin: 0 auto var(--space-16); text-align: center; }
.philosophy-text h2 { margin-bottom: var(--space-6); font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.philosophy-text p  { font-size: 17px; line-height: 1.8; }

.pillars-grid {
  display: grid; gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }

.pillar-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: var(--space-8); border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--trans-normal);
}
.pillar-card:hover {
  box-shadow: var(--shadow-accent);
  transform: translateY(-4px);
}
.pillar-card h3 { font-size: 20px; margin-bottom: var(--space-3); color: var(--gold); }
.pillar-card p  { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ───────────────────────────────────────────────────────────
   FEATURES
─────────────────────────────────────────────────────────── */
#features { background: var(--white); }

.features-grid {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

/* ───────────────────────────────────────────────────────────
   HOW IT WORKS
─────────────────────────────────────────────────────────── */
#how-it-works { background: var(--surface-raised); }

.steps-container { position: relative; }

.steps-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 900px) {
  .steps-track {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    align-items: start;
  }
  .steps-track::before {
    content: '';
    position: absolute;
    top: 28px; left: calc(10% + 28px); right: calc(10% + 28px);
    height: 1px; background: var(--border);
  }
}

.step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 var(--space-4); position: relative; z-index: 1;
}
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
  font-family: var(--font-display); font-size: 20px; font-weight: 400;
  color: var(--gold);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.step:hover .step-circle {
  border-color: var(--gold-border);
  background: var(--gold-dim);
  box-shadow: var(--shadow-accent);
}
.step h3 { font-size: 15px; margin-bottom: var(--space-2); font-family: var(--font-body); font-weight: 700; color: var(--text-primary); }
.step p  { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

@media (max-width: 899px) {
  .step {
    flex-direction: row; text-align: left; align-items: flex-start; gap: var(--space-4);
  }
  .step-circle { flex-shrink: 0; margin-bottom: 0; }
  .step-content { flex: 1; }
}

/* ───────────────────────────────────────────────────────────
   WHO IT'S FOR
─────────────────────────────────────────────────────────── */
#who { background: var(--white); }

.personas-grid {
  display: grid; gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .personas-grid { grid-template-columns: repeat(2, 1fr); } }

/* ───────────────────────────────────────────────────────────
   TESTIMONIALS  (inverted dark section)
─────────────────────────────────────────────────────────── */
#testimonials {
  background: var(--navy);
  overflow: hidden;
}

/* Override text for dark section */
#testimonials .section-header h2 { color: #FFFFFF; }
#testimonials .section-header p  { color: rgba(255,255,255,0.6); }
#testimonials .eyebrow {
  color: var(--gold-soft);
  background: rgba(0,82,255,0.15);
  border-color: rgba(0,82,255,0.3);
}

.testimonials-carousel { position: relative; }
.testimonials-track-wrap { overflow: hidden; }
.testimonials-track {
  display: flex; gap: var(--space-5);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testimonials-track .testimonial-card {
  flex: 0 0 calc(100% - 0px);
  min-width: 0;
}
@media (min-width: 640px) {
  .testimonials-track .testimonial-card { flex: 0 0 calc(50% - 10px); }
}
@media (min-width: 1024px) {
  .testimonials-track .testimonial-card { flex: 0 0 calc(33.333% - 14px); }
}

.carousel-controls {
  display: flex; align-items: center; gap: var(--space-4);
  margin-top: var(--space-8); justify-content: center;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans-fast);
}
.carousel-btn:hover { border-color: rgba(255,255,255,0.3); color: #FFFFFF; background: rgba(255,255,255,0.1); }
.carousel-dots { display: flex; gap: var(--space-2); }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer;
  transition: var(--trans-fast);
}
.carousel-dot.active { background: var(--gold); transform: scale(1.2); }

/* ───────────────────────────────────────────────────────────
   ENTERPRISE CTA  (inverted dark section)
─────────────────────────────────────────────────────────── */
#enterprise {
  background: var(--navy);
  border: none;
  position: relative; overflow: hidden;
}
#enterprise::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,82,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Override text for dark section */
#enterprise h2,
#enterprise h3,
#enterprise .enterprise-card h3 { color: #FFFFFF; }
#enterprise p,
#enterprise .enterprise-card p  { color: rgba(255,255,255,0.6); }
#enterprise .eyebrow {
  color: var(--gold-soft);
  background: rgba(0,82,255,0.15);
  border-color: rgba(0,82,255,0.3);
}

.enterprise-grid {
  display: grid; gap: var(--space-6);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-12);
  position: relative; z-index: 1;
}
@media (min-width: 768px) { .enterprise-grid { grid-template-columns: repeat(3, 1fr); } }

.enterprise-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: var(--trans-normal);
}
.enterprise-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.enterprise-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(0,82,255,0.15); border: 1px solid rgba(0,82,255,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.enterprise-card-icon svg { width: 20px; height: 20px; stroke: var(--gold-soft); }

.enterprise-cta-center { text-align: center; position: relative; z-index: 1; }

/* Override eyebrow in enterprise section */
#enterprise .eyebrow {
  color: var(--gold-soft);
  background: rgba(0,82,255,0.15);
  border-color: rgba(0,82,255,0.3);
}
