:root {
  --eajee-navy-950: #071a2e;
  --eajee-navy-900: #0b1b2b;
  --eajee-navy-800: #10283c;
  --eajee-teal-700: #0b6f77;
  --eajee-teal-600: #0f8f99;
  --eajee-teal-500: #0fa3a6;
  --eajee-cyan-100: #e6f6fa;
  --eajee-slate-700: #3b4a5a;
  --eajee-slate-600: #526274;
  --eajee-slate-500: #718096;
  --eajee-border: #dce5ed;
  --eajee-surface: #f7f9fb;
  --eajee-white: #ffffff;
  --eajee-shadow: 0 22px 55px rgba(7, 26, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.eajee-public-page {
  min-width: 320px;
  margin: 0;
  background: var(--eajee-white);
  color: var(--eajee-navy-900);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.eajee-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eajee-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.eajee-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.eajee-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--eajee-white);
  text-decoration: none;
}

.eajee-brand img {
  width: 40px;
  height: 40px;
}

.eajee-wordmark {
  display: block;
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

.eajee-brand-descriptor {
  display: block;
  margin-top: 5px;
  color: #8ce6ec;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eajee-nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
}

.eajee-nav-link,
.eajee-nav-signin {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.eajee-nav-link:hover,
.eajee-nav-link:focus,
.eajee-nav-signin:hover,
.eajee-nav-signin:focus {
  color: var(--eajee-white);
}

.eajee-nav-signin {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 10px;
}

.eajee-button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.eajee-button:hover,
.eajee-button:focus {
  text-decoration: none;
  transform: translateY(-1px);
}

.eajee-button-primary {
  background: var(--eajee-teal-500);
  color: var(--eajee-white);
  box-shadow: 0 15px 30px rgba(15, 163, 166, 0.22);
}

.eajee-button-primary:hover,
.eajee-button-primary:focus {
  background: var(--eajee-teal-600);
  color: var(--eajee-white);
}

.eajee-button-outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
  color: var(--eajee-white);
}

.eajee-button-outline:hover,
.eajee-button-outline:focus {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
  color: var(--eajee-white);
}

.eajee-hero {
  position: relative;
  overflow: hidden;
  padding: 172px 0 108px;
  background:
    radial-gradient(
      circle at 13% 18%,
      rgba(15, 163, 166, 0.21),
      transparent 31%
    ),
    radial-gradient(
      circle at 91% 75%,
      rgba(87, 199, 207, 0.14),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--eajee-navy-950),
      #0a3444 62%,
      #0b5964
    );
  color: var(--eajee-white);
}

.eajee-hero::before {
  position: absolute;
  width: 580px;
  height: 580px;
  top: -290px;
  right: -130px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.eajee-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(430px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.eajee-eyebrow {
  margin: 0 0 20px;
  color: #8ce6ec;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eajee-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(47px, 5.1vw, 72px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.eajee-hero-copy {
  max-width: 690px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: 18px;
  line-height: 1.72;
}

.eajee-hero-assurance {
  max-width: 680px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.eajee-hero-actions {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.eajee-confidential-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.eajee-systems-card {
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(7, 26, 46, 0.72);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
}

.eajee-systems-card-header {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.eajee-systems-card-label {
  display: block;
  margin-bottom: 5px;
  color: #8ce6ec;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eajee-systems-card-header strong {
  color: var(--eajee-white);
  font-size: 16px;
}

.eajee-systems-status {
  padding: 7px 10px;
  border: 1px solid rgba(140, 230, 236, 0.22);
  border-radius: 999px;
  background: rgba(15, 163, 166, 0.11);
  color: #8ce6ec;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.eajee-systems-node {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.065);
}

.eajee-systems-node > span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(15, 163, 166, 0.16);
  color: #8ce6ec;
  font-size: 11px;
  font-weight: 800;
}

.eajee-systems-node strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.eajee-systems-node small {
  margin-top: 4px;
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.5;
}

.eajee-systems-connector {
  width: 1px;
  height: 12px;
  margin: 0 0 0 33px;
  background: rgba(140, 230, 236, 0.32);
}

.eajee-proof-strip {
  border-bottom: 1px solid var(--eajee-border);
  background: var(--eajee-white);
}

.eajee-proof-grid {
  min-height: 125px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eajee-proof-item {
  padding: 30px 32px;
  border-right: 1px solid var(--eajee-border);
}

.eajee-proof-item:first-child {
  padding-left: 0;
}

.eajee-proof-item:last-child {
  border-right: 0;
}

.eajee-proof-item strong {
  display: block;
  color: var(--eajee-navy-900);
  font-size: 14px;
}

.eajee-proof-item span {
  margin-top: 8px;
  display: block;
  color: var(--eajee-slate-500);
  font-size: 12px;
  line-height: 1.55;
}

.eajee-section {
  padding: 105px 0;
}

.eajee-section-soft {
  background: var(--eajee-surface);
}

.eajee-section-dark {
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(15, 163, 166, 0.18),
      transparent 30%
    ),
    var(--eajee-navy-950);
  color: var(--eajee-white);
}

.eajee-section-heading {
  max-width: 790px;
  margin-bottom: 48px;
}

.eajee-section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eajee-section-label {
  margin: 0 0 14px;
  color: var(--eajee-teal-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eajee-section-label-light {
  color: #8ce6ec;
}

.eajee-section h2 {
  margin: 0;
  color: var(--eajee-navy-900);
  font-size: clamp(35px, 4vw, 51px);
  font-weight: 800;
  line-height: 1.09;
  letter-spacing: -0.044em;
}

.eajee-section-dark h2,
.eajee-section-cta h2 {
  color: var(--eajee-white);
}

.eajee-section-intro {
  margin: 20px 0 0;
  color: var(--eajee-slate-600);
  font-size: 17px;
  line-height: 1.75;
}

.eajee-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.eajee-service-card {
  padding: 31px;
  border: 1px solid var(--eajee-border);
  border-radius: 21px;
  background: var(--eajee-white);
  box-shadow: 0 13px 36px rgba(7, 26, 46, 0.055);
}

.eajee-service-number {
  width: 44px;
  height: 44px;
  margin-bottom: 25px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--eajee-navy-950);
  color: #8ce6ec;
  font-size: 13px;
  font-weight: 800;
}

.eajee-service-card h3 {
  margin: 0;
  color: var(--eajee-navy-900);
  font-size: 21px;
  letter-spacing: -0.02em;
}

.eajee-service-card > p {
  margin: 14px 0 20px;
  color: var(--eajee-slate-600);
  font-size: 14px;
  line-height: 1.72;
}

.eajee-service-card ul {
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--eajee-border);
  list-style: none;
}

.eajee-service-card li {
  position: relative;
  margin-top: 9px;
  padding-left: 18px;
  color: var(--eajee-slate-700);
  font-size: 13px;
  line-height: 1.55;
}

.eajee-service-card li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--eajee-teal-500);
  content: "";
}

.eajee-experience-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.03fr)
    minmax(360px, 0.97fr);
  align-items: center;
  gap: 75px;
}

.eajee-dark-copy {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.78;
}

.eajee-experience-points {
  display: grid;
  gap: 13px;
}

.eajee-experience-point {
  padding: 18px 19px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.eajee-experience-point > span {
  color: #8ce6ec;
  font-weight: 800;
}

.eajee-experience-point strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.eajee-experience-point p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.55;
}

.eajee-engagement-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.eajee-engagement-step {
  min-height: 218px;
  padding: 23px 19px;
  border: 1px solid var(--eajee-border);
  border-radius: 17px;
  background: var(--eajee-white);
  text-align: center;
}

.eajee-engagement-step > span {
  width: 36px;
  height: 36px;
  margin: 0 auto 17px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--eajee-cyan-100);
  color: var(--eajee-teal-700);
  font-size: 12px;
  font-weight: 800;
}

.eajee-engagement-step strong {
  color: var(--eajee-navy-900);
  font-size: 15px;
}

.eajee-engagement-step p {
  margin: 10px 0 0;
  color: var(--eajee-slate-500);
  font-size: 12px;
  line-height: 1.58;
}

.eajee-boundary-card {
  padding: 57px;
  border: 1px solid var(--eajee-border);
  border-radius: 25px;
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(360px, 1.05fr);
  align-items: center;
  gap: 65px;
  background: var(--eajee-surface);
}

.eajee-boundary-card h2 {
  font-size: clamp(31px, 3.5vw, 43px);
}

.eajee-boundary-content p {
  margin: 0 0 17px;
  color: var(--eajee-slate-600);
  font-size: 15px;
  line-height: 1.75;
}

.eajee-boundary-content p:last-child {
  margin-bottom: 0;
}

.eajee-section-cta {
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(15, 163, 166, 0.19),
      transparent 30%
    ),
    var(--eajee-navy-950);
}

.eajee-cta {
  max-width: 850px;
  text-align: center;
}

.eajee-cta > p:not(.eajee-section-label) {
  max-width: 680px;
  margin: 21px auto 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.72;
}

.eajee-cta-actions {
  margin-top: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 19px;
}

.eajee-cta-email {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  text-decoration: none;
}

.eajee-cta-email:hover,
.eajee-cta-email:focus {
  color: var(--eajee-white);
}

.eajee-footer {
  padding: 34px 0;
  border-top: 1px solid var(--eajee-border);
  background: var(--eajee-white);
}

.eajee-footer-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
}

.eajee-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eajee-footer-brand img {
  width: 35px;
  height: 35px;
}

.eajee-footer-brand strong {
  display: block;
  color: var(--eajee-navy-900);
  font-size: 20px;
  letter-spacing: -0.045em;
}

.eajee-footer-brand span {
  display: block;
  margin-top: 3px;
  color: var(--eajee-slate-500);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eajee-footer-company {
  color: var(--eajee-slate-500);
  font-size: 12px;
  text-align: center;
}

.eajee-footer-links {
  display: flex;
  align-items: center;
  gap: 21px;
}

.eajee-footer-links a {
  color: var(--eajee-slate-600);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.eajee-footer-links a:hover,
.eajee-footer-links a:focus {
  color: var(--eajee-teal-700);
}

@media (max-width: 1050px) {
  .eajee-hero-grid,
  .eajee-experience-grid,
  .eajee-boundary-card {
    grid-template-columns: 1fr;
  }

  .eajee-systems-card {
    max-width: 730px;
  }

  .eajee-engagement-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .eajee-footer-row {
    grid-template-columns: auto 1fr;
  }

  .eajee-footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .eajee-container {
    width: min(100% - 28px, 1180px);
  }

  .eajee-nav {
    min-height: 70px;
  }

  .eajee-nav-link {
    display: none;
  }

  .eajee-hero {
    padding: 137px 0 78px;
  }

  .eajee-hero-grid {
    gap: 45px;
  }

  .eajee-hero h1 {
    font-size: clamp(40px, 12vw, 57px);
  }

  .eajee-proof-grid,
  .eajee-service-grid,
  .eajee-engagement-flow {
    grid-template-columns: 1fr;
  }

  .eajee-proof-item,
  .eajee-proof-item:first-child {
    padding: 23px 0;
    border-right: 0;
    border-bottom: 1px solid var(--eajee-border);
  }

  .eajee-proof-item:last-child {
    border-bottom: 0;
  }

  .eajee-section {
    padding: 78px 0;
  }

  .eajee-boundary-card {
    padding: 38px 27px;
    gap: 35px;
  }

  .eajee-footer-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .eajee-footer-company {
    text-align: left;
  }
}

@media (max-width: 500px) {
  .eajee-nav-signin {
    padding: 9px 12px;
    font-size: 11px;
  }

  .eajee-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .eajee-hero-actions .eajee-button {
    width: 100%;
  }

  .eajee-systems-card {
    padding: 15px;
    border-radius: 19px;
  }

  .eajee-systems-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .eajee-service-card {
    padding: 25px;
  }

  .eajee-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .eajee-footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .eajee-button {
    transition: none;
  }
}
