/* ══════════════════════════════════════════════════════════
   HOME.CSS — Homepage Styles
   Dark-dominant PlugJolt theme
   ══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-40) 0 var(--space-24);
}

.hero--fullbleed {
  background-color: var(--deep-teal);
  color: var(--white);
  overflow: hidden;
}

.hero--fullbleed > * {
  position: relative;
  z-index: 1;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
  width: 100%;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--size-hero);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero__headline-line {
  display: block;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: var(--size-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  max-width: 55ch;
  margin-bottom: var(--space-8);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}

.hero__stats {
  display: flex;
  gap: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-subtle);
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--size-4xl);
  font-weight: var(--weight-light);
  color: var(--volt-green);
  line-height: 1;
  margin-bottom: var(--space-2);
  font-variant-numeric: tabular-nums;
}

.hero__stat-label {
  font-size: var(--size-sm);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* ── NOTIFICATION PREVIEW ── */
.notification-preview {
  padding: var(--space-12) 0;
  background: var(--deep-teal);
}

.notification-mockup {
  display: inline-block;
  background: var(--card-surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: left;
  max-width: 380px;
  width: 100%;
  position: relative;
}

.notification-mockup__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.notification-mockup__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--volt-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.notification-mockup__meta {
  flex: 1;
}

.notification-mockup__app {
  font-family: -apple-system, BlinkMacSystemFont, var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.notification-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--volt-green);
  flex-shrink: 0;
}

.notification-mockup__divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 8px 0 10px;
}

.notification-mockup__time {
  font-family: -apple-system, BlinkMacSystemFont, var(--font-body);
  font-size: 13px;
  color: var(--text-tertiary);
  margin-left: auto;
}

.notification-mockup__title {
  font-family: -apple-system, BlinkMacSystemFont, var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1.3;
}

.notification-mockup__body {
  font-family: -apple-system, BlinkMacSystemFont, var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  height: 1px;
  background: var(--border-subtle);
  transform-origin: left;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.step {
  background: var(--card-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-8);
  transition: border-color 0.2s ease,
              box-shadow 0.2s ease;
}

.step:hover {
  border-color: rgba(0, 200, 83, 0.3);
  box-shadow: var(--shadow-md);
}

.step__number {
  font-family: var(--font-display);
  font-size: var(--size-5xl);
  font-weight: var(--weight-bold);
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.step__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--volt-green-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--volt-green);
  font-size: var(--size-xl);
}

.step h3 {
  font-size: var(--size-xl);
  margin-bottom: var(--space-3);
  color: var(--white);
}

.step p {
  font-size: var(--size-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ── PRICING NOTE (homepage only) ── */
.pricing-note {
  text-align: center;
  font-size: var(--size-base);
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-top: var(--space-8);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOR PROPERTIES ── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.value-card {
  background: var(--card-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-8);
  transition: border-color 0.2s ease,
              box-shadow 0.2s ease;
}

.value-card:hover {
  border-color: rgba(0, 200, 83, 0.3);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  font-size: var(--size-lg);
  margin-bottom: var(--space-3);
  color: var(--white);
}

.value-card p {
  font-size: var(--size-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ── CREDIBILITY BAR ── */
.credibility {
  text-align: center;
  padding: var(--space-8) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.credibility p {
  font-size: var(--size-sm);
  color: var(--text-tertiary);
  letter-spacing: var(--tracking-wide);
  max-width: none;
  margin: 0 auto;
}

/* ── SPLIT CTA ── */
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.split-cta__panel {
  background: var(--card-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-12);
  text-align: center;
  transition: border-color 0.2s ease,
              box-shadow 0.2s ease;
}

.split-cta__panel:hover {
  border-color: rgba(0, 200, 83, 0.3);
  box-shadow: var(--shadow-md);
}

.split-cta__panel h3 {
  font-size: var(--size-2xl);
  margin-bottom: var(--space-3);
  color: var(--white);
}

.split-cta__panel p {
  font-size: var(--size-base);
  color: var(--text-secondary);
  margin: 0 auto var(--space-6);
  line-height: var(--leading-relaxed);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-32) 0 var(--space-16);
  }

  .hero__inner {
    padding: 0 var(--space-4);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .split-cta {
    grid-template-columns: 1fr;
  }
}

/* ── SOCIAL PROOF ── */
.social-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.social-proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.social-proof__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 83, 0.1);
  border-radius: 50%;
}

.social-proof__text {
  font-family: var(--font-body);
  font-size: var(--size-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.social-proof__text a {
  text-decoration: none;
}

.social-proof__text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .social-proof {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}
