:root {
  --ea-bg: #f4f7fb;
  --ea-surface: #ffffff;
  --ea-surface-soft: #eef6f2;
  --ea-surface-alt: #f8fbff;
  --ea-text: #0f172a;
  --ea-text-soft: #475569;
  --ea-border: rgba(148, 163, 184, 0.22);
  --ea-primary: #4f6cff;
  --ea-primary-2: #7b5cff;
  --ea-accent: #ef4444;
  --ea-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
  --ea-shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.08);
  --ea-radius-xl: 28px;
  --ea-radius-lg: 22px;
  --ea-radius-md: 16px;
  --ea-radius-pill: 999px;
  --ea-max: 1180px;
}

/* Global reset for this page only */
body.neva-early-body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(79, 108, 255, 0.10), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(123, 92, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #f4f7fb 50%, #f7fbff 100%);
  color: var(--ea-text);
}

.neva-early-body,
.neva-early-body * {
  box-sizing: border-box;
}

.neva-early-body img {
  max-width: 100%;
  display: block;
}

.ea-page {
  overflow: hidden;
}

.ea-container {
  width: 100%;
  max-width: var(--ea-max);
  margin: 0 auto;
  padding: 0 24px;
}

.ea-page h1,
.ea-page h2,
.ea-page h3 {
  margin: 0;
  color: var(--ea-text);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.ea-page p,
.ea-page li,
.ea-page summary,
.ea-page span {
  color: var(--ea-text-soft);
  line-height: 1.7;
}

.ea-page a {
  color: inherit;
  text-decoration: none;
}

.ea-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #334155;
}

.ea-topbar {
  position: relative;
  z-index: 10;
  padding: 22px 0 0;
}

.ea-logo {
  display: inline-flex;
  align-items: center;
}

.ea-logo img {
  width: auto;
  height: 38px;
  max-width: 180px;
}

.ea-logo span {
  font-weight: 700;
  color: var(--ea-text);
}

/* Hero */
.ea-hero {
  padding: 42px 0 52px;
}

.ea-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 460px);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.ea-hero-copy {
  max-width: 620px;
}

.ea-hero-copy h1 {
  font-size: clamp(52px, 7vw, 82px);
  margin-bottom: 18px;
  max-width: 9ch;
}

.ea-bridge {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 650;
  color: var(--ea-text);
  line-height: 1.35;
  max-width: 22ch;
}

.ea-sub {
  margin: 0 0 24px;
  font-size: clamp(18px, 1.6vw, 21px);
  max-width: 34ch;
}

.ea-offer-stack {
  margin-bottom: 28px;
}

.ea-offer {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #312e81;
}

.ea-support {
  margin: 0;
  font-size: 15px;
}

.ea-hero-actions {
  margin-bottom: 24px;
}

.ea-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--ea-radius-pill);
  background: linear-gradient(135deg, var(--ea-primary), var(--ea-primary-2));
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 16px 30px rgba(79, 108, 255, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.ea-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(79, 108, 255, 0.34);
}

.ea-btn--light {
  background: #ffffff;
  color: #0f172a;
  box-shadow: none;
}

.ea-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ea-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--ea-radius-pill);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

/* Form card */
.ea-form-card {
  border-radius: var(--ea-radius-xl);
  padding: 30px;
  background: linear-gradient(180deg, #edf7f2 0%, #e2f0ea 100%);
  border: 1px solid rgba(16, 185, 129, 0.12);
  box-shadow: var(--ea-shadow);
}

.ea-card-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f766e;
}

.ea-form-card h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 4vw, 40px);
}

.ea-card-copy {
  margin: 0 0 6px;
  font-size: 17px;
}

.ea-card-helper {
  margin: 0 0 8px;
  font-size: 14px;
}

.ea-card-helper--small {
  margin-bottom: 22px;
}

.ea-form-trust {
  margin: 16px 0 0;
  font-size: 13px;
  color: #334155;
}

/* Ninja Forms cleanup + styling */
.ea-form-wrap .nf-form-title,
.ea-form-wrap .nf-form-fields-required {
  display: none !important;
}

.ea-form-wrap .nf-form-cont {
  margin: 0;
}

.ea-form-wrap .nf-form-cont .nf-field-container {
  margin-bottom: 16px;
}

.ea-form-wrap .nf-form-cont label {
  display: block;
  margin-bottom: 6px;
  color: var(--ea-text) !important;
  font-size: 14px;
  font-weight: 700;
}

.ea-form-wrap .nf-form-cont input[type="text"],
.ea-form-wrap .nf-form-cont input[type="email"],
.ea-form-wrap .nf-form-cont input[type="tel"],
.ea-form-wrap .nf-form-cont textarea,
.ea-form-wrap .nf-form-cont select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ea-text);
  font-size: 15px;
  box-shadow: inset 0 1px 1px rgba(15, 23, 42, 0.02);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.ea-form-wrap .nf-form-cont input:focus,
.ea-form-wrap .nf-form-cont textarea:focus,
.ea-form-wrap .nf-form-cont select:focus {
  outline: none;
  border-color: rgba(79, 108, 255, 0.60);
  box-shadow: 0 0 0 4px rgba(79, 108, 255, 0.10);
  background: #ffffff;
}

.ea-form-wrap .nf-form-cont textarea {
  min-height: 110px;
  resize: vertical;
}

.ea-form-wrap .nf-form-cont .submit-container {
  margin-top: 10px;
}

.ea-form-wrap .nf-form-cont input[type="submit"],
.ea-form-wrap .nf-form-cont input[type="button"] {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: var(--ea-radius-pill);
  background: linear-gradient(135deg, var(--ea-primary), var(--ea-primary-2));
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(79, 108, 255, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ea-form-wrap .nf-form-cont input[type="submit"]:hover,
.ea-form-wrap .nf-form-cont input[type="button"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(79, 108, 255, 0.30);
}

.ea-form-wrap .nf-form-cont .checkbox-wrap label,
.ea-form-wrap .nf-form-cont .listcheckbox-wrap label {
  font-weight: 600;
  line-height: 1.55;
}

.ea-form-wrap .nf-error-msg,
.ea-form-wrap .ninja-forms-req-symbol,
.ea-form-wrap .nf-field-description {
  font-size: 13px;
}

/* Shared sections */
.ea-section-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.ea-section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 50px);
}

.ea-section-head p {
  margin: 0;
  font-size: 17px;
}

/* Use cases */
.ea-scenarios {
  padding: 38px 0 90px;
}

.ea-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ea-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--ea-radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--ea-border);
  box-shadow: var(--ea-shadow-soft);
  overflow: hidden;
}

.ea-card-media {
  padding: 20px 20px 0;
}

.ea-card-body {
  padding: 22px 22px 26px;
}

.ea-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.ea-card p {
  margin: 0;
  font-size: 16px;
}

/* Media placeholders / frames */
.ea-media-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(79,108,255,0.14), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.ea-media-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ea-media-placeholder {
  min-height: 300px;
}

.ea-media-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.ea-phone {
  min-height: 360px;
}

.ea-phone--small {
  min-height: 280px;
}

.ea-phone--large {
  min-height: 480px;
}

/* Emergency */
.ea-emergency {
  padding: 0 0 90px;
}

.ea-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ea-step-card {
  position: relative;
  padding: 26px;
  border-radius: var(--ea-radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--ea-border);
  box-shadow: var(--ea-shadow-soft);
}

.ea-step-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--ea-primary), var(--ea-primary-2));
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
}

.ea-step-content h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.ea-step-content p {
  margin: 0 0 18px;
  font-size: 16px;
}

.ea-bullet-list {
  margin: 0 0 18px;
  padding-left: 18px;
}

.ea-bullet-list li {
  margin-bottom: 6px;
  color: var(--ea-text);
  font-weight: 650;
}

/* Differentiator */
.ea-differentiator {
  padding: 0 0 90px;
}

.ea-diff-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
}

.ea-diff-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 46px);
  max-width: 15ch;
}

.ea-diff-copy p {
  margin: 0 0 16px;
  font-size: 17px;
}

.ea-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ea-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--ea-text);
  font-weight: 650;
}

.ea-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 800;
}

/* Privacy */
.ea-privacy {
  padding: 0 0 90px;
}

.ea-privacy-box {
  padding: 34px;
  border-radius: var(--ea-radius-xl);
  background:
    radial-gradient(circle at 10% 20%, rgba(79,108,255,0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--ea-border);
  box-shadow: var(--ea-shadow-soft);
  text-align: center;
}

.ea-privacy-box h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 46px);
}

.ea-privacy-box p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
}

.ea-privacy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}

.ea-privacy-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--ea-radius-pill);
  background: rgba(79,108,255,0.08);
  border: 1px solid rgba(79, 108, 255, 0.14);
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

/* FAQ */
.ea-faq {
  padding: 0 0 90px;
}

.ea-faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.ea-faq-item {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--ea-border);
  box-shadow: var(--ea-shadow-soft);
  overflow: hidden;
}

.ea-faq-item + .ea-faq-item {
  margin-top: 14px;
}

.ea-faq-item summary {
  position: relative;
  padding: 22px 58px 22px 22px;
  list-style: none;
  cursor: pointer;
  color: var(--ea-text);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.4;
}

.ea-faq-item summary::-webkit-details-marker {
  display: none;
}

.ea-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: 500;
  color: #64748b;
}

.ea-faq-item[open] summary::after {
  content: "−";
}

.ea-faq-answer {
  padding: 0 22px 22px;
}

.ea-faq-answer p {
  margin: 0;
  font-size: 16px;
}

/* Final CTA */
.ea-final-cta {
  padding: 0 0 90px;
}

.ea-final-box {
  padding: 42px 28px;
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 8%, rgba(59, 130, 246, 0.24), transparent 48%),
    linear-gradient(140deg, #0f172a, #1e293b);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
}

.ea-final-box .ea-kicker,
.ea-final-box h2,
.ea-final-box p {
  color: #ffffff;
}

.ea-final-box h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 50px);
}

.ea-final-box p {
  max-width: 680px;
  margin: 0 auto 22px;
  font-size: 17px;
  opacity: 0.92;
}

/* Anchor offset */
#join {
  scroll-margin-top: 24px;
}

/* Responsive */
@media (max-width: 1080px) {
  .ea-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .ea-hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .ea-hero-copy h1,
  .ea-bridge,
  .ea-sub {
    max-width: 100%;
  }

  .ea-hero-actions,
  .ea-chip-row {
    justify-content: center;
  }

  .ea-card-grid,
  .ea-step-grid,
  .ea-diff-grid {
    grid-template-columns: 1fr;
  }

  .ea-diff-copy h2 {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .ea-container {
    padding: 0 18px;
  }

  .ea-topbar {
    padding-top: 18px;
  }

  .ea-logo img {
    height: 34px;
  }

  .ea-hero {
    padding: 28px 0 42px;
  }

  .ea-form-card,
  .ea-step-card,
  .ea-privacy-box,
  .ea-final-box {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .ea-card {
    border-radius: 18px;
  }

  .ea-card-media {
    padding: 16px 16px 0;
  }

  .ea-card-body {
    padding: 18px 18px 22px;
  }

  .ea-media-placeholder,
  .ea-phone,
  .ea-phone--small,
  .ea-phone--large {
    min-height: 250px;
  }

  .ea-faq-item summary {
    padding: 18px 50px 18px 18px;
    font-size: 17px;
  }

  .ea-faq-answer {
    padding: 0 18px 18px;
  }
}