:root {
  --teal: #00C896;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
}

/* PAGE LOADER */
html.is-loading,
html.is-loading body {
  overflow: hidden;
  height: 100%;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060608;
  transition: opacity .5s ease, visibility .5s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ecg {
  width: 380px;
  height: 100px;
}

.ecg-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ecg-track {
  fill: none;
  stroke: rgba(248, 246, 241, 0.1);
  stroke-width: 3;
  stroke-linejoin: round;
}

.ecg-pulse {
  fill: none;
  stroke: url(#ecgFade);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 22 78;
  stroke-dashoffset: 0;
  animation: ecgSweep 3s linear infinite;
  filter: drop-shadow(0 0 6px rgba(0, 200, 150, 0.6));
}

@keyframes ecgSweep {
  to {
    stroke-dashoffset: -100;
  }
}

/* MEET THE FOUNDER */
.founder-hero-wrap {
  background: #EFF8F4;
  min-height: 100vh;
  padding: 80px 3rem;
}

.founder-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.founder-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0E5D4F;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(6, 6, 8, 0.1);
  border-radius: 999px;
  padding: 9px 18px 9px 14px;
  margin-bottom: 2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.founder-back i {
  display: flex;
  font-size: calc(0.8rem + 5px);
  transition: transform 0.2s ease;
}

.founder-back:hover {
  border-color: #00C896;
  box-shadow: 0 6px 16px rgba(6, 6, 8, 0.08);
  transform: translateY(-1px);
}

.founder-back:hover i {
  transform: translateX(-3px);
}

.founder-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0E5D4F;
  margin-bottom: 1.5rem;
}

.founder-head {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.founder-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid #0E5D4F;
  background: rgba(0, 200, 150, 0.08);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(2.05);
  transform-origin: 50% 12%;
}

.founder-name {
  font-size: 1.7rem;
  font-weight: 800;
  color: #060608;
  margin-bottom: 0.4rem;
}

.founder-title {
  font-size: 0.85rem;
  color: #00C896;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.founder-bio {
  max-width: 70ch;
  margin-top: 1.25rem;
}

.founder-bio p {
  color: rgba(6, 6, 8, 0.6);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.founder-quote {
  border-left: 4px solid #F5A623;
  background: rgba(245, 166, 35, 0.08);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #060608;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.vm-panel {
  background: #fff;
  border: 1px solid rgba(6, 6, 8, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
}

.vm-panel h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #060608;
  margin-bottom: 0.6rem;
}

.vm-panel p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(6, 6, 8, 0.6);
}

.why-panel {
  background: #fff;
  border: 1px solid rgba(6, 6, 8, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 1.25rem;
}

.why-panel h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #060608;
  margin-bottom: 1rem;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.why-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #060608;
  padding: 6px 0;
}

.why-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0E5D4F;
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

.founder-banner {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 16px;
  background: #060608;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .vm-grid, .why-list {
    grid-template-columns: 1fr;
  }

  .founder-hero-wrap {
    padding: 110px 1.25rem 60px;
  }
}

/* FOOTER */
footer {
  background: #060608;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4.5rem 3rem 0;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F8F6F1;
}

.footer-logo span {
  color: #00C896;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.5);
  line-height: 1.7;
  margin-top: 0.9rem;
}

.footer-cols {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00C896;
  margin-bottom: 0.3rem;
}

.footer-col a {
  font-size: 0.82rem;
  color: rgba(248, 246, 241, 0.5);
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #00C896;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(248, 246, 241, 0.25);
}

.footer-paypal-form {
  display: inline-block;
}

.footer-paypal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8F6F1;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #060608;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-paypal-btn img {
  height: 16px;
  width: auto;
  display: block;
}

.footer-paypal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.12);
}

.footer-paypal-btn-pro {
  background: #00C896;
  color: #060608;
}

.footer-paypal-btn-pro:hover {
  background: #00b085;
  box-shadow: 0 8px 20px rgba(0, 200, 150, 0.25);
}

.footer-paypal-btn-pro.is-unlocked {
  background: rgba(0, 200, 150, 0.15);
  color: #00C896;
  cursor: default;
  box-shadow: none;
}

.footer-paypal-btn-pro.is-unlocked:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  footer {
    padding: 3.5rem 1.5rem 0;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-cols {
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
