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

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f7f6f2;
  color: #1a1a18;
  font-size: 1.125rem;
  line-height: 1.75;
}

h1, h2 {
  font-family: 'Playfair Display', 'Fraunces', Georgia, serif;
}
h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
}

.font-fraunces { font-family: 'Fraunces', Georgia, serif; }
.font-inter { font-family: 'Inter', sans-serif; }

:root {
  --pm-accent: #63aeb1;
  --pm-bg: #f7f6f2;
  --pm-dark: #1a1a18;
  --pm-mid: #3d3d38;
  --pm-muted: #6b6b62;
}

.text-pm-accent { color: var(--pm-accent); }
.text-logo { color: #013845; }
.italic-accent.text-logo { color: #013845; }

.italic-accent {
  font-family: 'Playfair Display', 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--pm-accent);
}

.light-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 8px 24px rgba(15,23,42,0.06);
}

.liquid-glass {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

html { scroll-behavior: smooth; }

/* Hero slideshow dots */
.hero-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 300ms, width 300ms;
}
.hero-dot.active {
  background: white;
  width: 1.5rem;
}

/* Hero heading line control */
.hero-line {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.15em;
}
@media (max-width: 768px) {
  .hero-line { flex-wrap: wrap; }
}

/* Fade-in animation utility */
.fade-in-el {
  opacity: 0;
  transition: opacity 800ms ease;
}
.fade-in-el.visible { opacity: 1; }

/* Animated heading words */
.anim-word {
  display: inline-block;
  white-space: nowrap;
}
.anim-word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1), transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.anim-word span.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.5rem 4rem;
}
nav.site-nav.inner-page {
  position: sticky;
  padding: 1rem 4rem;
}
@media (max-width: 768px) {
  nav.site-nav, nav.site-nav.inner-page { padding: 1rem 1.5rem; }
}

.nav-bar {
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 300ms;
}
.nav-bar.over-hero {
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
}
.nav-bar.scrolled, .nav-bar.light {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 1rem;
  text-decoration: none;
  transition: color 200ms;
  font-family: 'Inter', sans-serif;
}
.nav-bar.over-hero .nav-links a { color: white; text-shadow: 0 1px 50px rgb(0, 0, 0); }
.nav-bar.over-hero .nav-links a:hover { color: #d1d5db; }
.nav-bar.scrolled .nav-links a, .nav-bar.light .nav-links a { color: #0f172a; }
.nav-bar.scrolled .nav-links a:hover, .nav-bar.light .nav-links a:hover { color: #475569; }

.nav-cta {
  display: inline-flex;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 200ms, color 200ms;
  font-family: 'Inter', sans-serif;
}
.nav-bar.over-hero .nav-cta { background: white; color: black; text-shadow: none; }
.nav-bar.over-hero .nav-cta:hover { background: #f3f4f6; }
.nav-bar.scrolled .nav-cta, .nav-bar.light .nav-cta { background: #0f172a; color: white; }
.nav-bar.scrolled .nav-cta:hover, .nav-bar.light .nav-cta:hover { background: #334155; }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.nav-bar.over-hero .hamburger-icon { color: white; }
.nav-bar.scrolled .hamburger-icon, .nav-bar.light .hamburger-icon { color: #1a1a18; }

/* Logo bg — visible on dark hero, blends with navbar when scrolled */
.nav-bar .nav-logo {
  padding: 0.3rem 0.5rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.95);
  transition: background 300ms;
}
.nav-bar.scrolled .nav-logo,
.nav-bar.light .nav-logo {
  background: transparent;
}
@media (max-width: 767px) {
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .nav-links, .nav-cta { display: none !important; }
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
}
.mobile-overlay.open { display: block; }
.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.4);
  backdrop-filter: blur(4px);
}
.mobile-panel {
  position: absolute;
  top: 6rem; left: 1.5rem; right: 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}
.mobile-panel a {
  display: block;
  text-decoration: none;
  color: #0f172a;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  transition: background 200ms;
}
.mobile-panel a:hover { background: #f1f5f9; }
.mobile-panel .mob-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #0f172a;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 200ms;
}
.mobile-panel .mob-cta:hover { background: #334155; }
.mobile-divider { border-top: 1px solid #e2e8f0; margin-top: 0.5rem; padding-top: 0.5rem; }

/* Welcome Popup */
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay.open { display: flex; }
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.popup-modal {
  position: relative;
  width: 100%;
  max-width: 28rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  animation: popupIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.popup-header {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.75rem 1.5rem;
  background: linear-gradient(135deg, #0d3233 0%, #1a4f52 50%, #0f3a3c 100%);
}
.popup-dot-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, #63aeb1 1px, transparent 1px);
  background-size: 24px 24px;
}
.popup-glow {
  position: absolute;
  top: -2.5rem; right: -2.5rem;
  width: 10rem; height: 10rem;
  border-radius: 50%;
  opacity: 0.2;
  background: radial-gradient(circle, #63aeb1, transparent 70%);
}
.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms;
  z-index: 10;
}
.popup-close:hover { background: rgba(255,255,255,0.2); }
.popup-body { background: white; padding: 1.5rem 1.75rem; }

.pm-input {
  width: 100%;
  padding: 0.625rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  color: #0f172a;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 200ms;
}
.pm-input:focus { border-color: #63aeb1; }
.pm-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.375rem;
  font-family: 'Inter', sans-serif;
}

.pm-btn-teal {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #1a4f52, #0d3233);
  border: none; cursor: pointer;
  transition: opacity 200ms;
}
.pm-btn-teal:disabled { opacity: 0.6; cursor: not-allowed; }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin 1s linear infinite; }

/* Comparison table (legacy) */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { text-align: left; padding: 1rem; font-weight: 500; border-bottom: 2px solid #1a1a18; font-family: 'Fraunces', Georgia, serif; font-size: 1.125rem; }
.compare-table td { padding: 1rem; border-bottom: 1px solid #e2ded6; vertical-align: top; font-family: 'Inter', sans-serif; font-size: 1rem; }
.compare-table td:first-child { font-weight: 500; color: #1a1a18; }
.compare-table td:nth-child(2) { color: #2d2d28; }
.compare-table td:last-child { color: #6b6b62; }

/* Comparison table v2 — matches image */
.compare-table-v2 { width: 100%; border-collapse: collapse; }
.compare-table-v2 thead tr { border-bottom: 1px solid #d6d2c8; }
.ctv2-row-label { text-align: left; padding: 1.125rem 1.25rem; font-family: 'Inter', sans-serif; font-size: 0.9375rem; font-weight: 600; color: #1a1a18; width: 28%; vertical-align: top; border-bottom: 1px solid #e8e4db; }
thead .ctv2-row-label { font-weight: 400; color: transparent; }
.ctv2-pm-col { padding: 1.125rem 1.25rem; font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: #1a1a18; vertical-align: top; border-bottom: 1px solid #e8e4db; background: rgba(99,174,177,0.07); width: 36%; }
thead .ctv2-pm-col { font-weight: 700; color: #0d6b6e; font-size: 1rem; background: rgba(99,174,177,0.1); border-radius: 0.5rem 0.5rem 0 0; }
.ctv2-trad-col { padding: 1.125rem 1.25rem; font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: #6b6b62; vertical-align: top; border-bottom: 1px solid #e8e4db; width: 36%; }
thead .ctv2-trad-col { font-weight: 700; color: #1a1a18; font-size: 1rem; }

/* Why orbit */
.why-orbit {
  position: relative;
  width: 720px;
  height: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-center {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #013845 0%, #0d6b6e 100%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(1,56,69,0.3), 0 0 0 12px rgba(1,56,69,0.08);
  animation: pulseCenter 4s ease-in-out infinite;
}
.why-center-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}
.why-center-title {
  font-family: 'Playfair Display', 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
}
.why-orbit-track {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(99,174,177,0.35);
  animation: rotateOrbit 80s linear infinite;
}
.why-orbit:hover .why-orbit-track,
.why-orbit:hover .why-satellite-inner {
  animation-play-state: paused;
}
.why-satellite {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  transform: rotate(var(--angle)) translateY(-265px) rotate(calc(var(--angle) * -1));
}
.why-satellite:hover { z-index: 10; }
.why-satellite-inner {
  width: 100%;
  height: 100%;
  animation: counterRotate 80s linear infinite;
}
.why-satellite-content {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2ded6;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.375rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 300ms, box-shadow 300ms, border-color 300ms;
  cursor: default;
}
.why-satellite:hover .why-satellite-content {
  transform: scale(1.15);
  border-color: #63aeb1;
  box-shadow: 0 20px 50px rgba(99,174,177,0.2);
}
.why-satellite-content h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1rem;
  color: #1a1a18;
  line-height: 1.3;
}
.why-icon { width: 28px; height: 28px; transition: transform 300ms; }
.why-satellite:hover .why-icon { transform: scale(1.15); }
@keyframes rotateOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes counterRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes pulseCenter {
  0%, 100% { transform: scale(1); box-shadow: 0 20px 50px rgba(1,56,69,0.3), 0 0 0 12px rgba(1,56,69,0.08); }
  50% { transform: scale(1.02); box-shadow: 0 24px 60px rgba(1,56,69,0.35), 0 0 0 16px rgba(1,56,69,0.1); }
}
@media (max-width: 1024px) {
  .why-orbit { width: 560px; height: 560px; }
  .why-satellite { width: 140px; height: 140px; margin: -70px 0 0 -70px; transform: rotate(var(--angle)) translateY(-205px) rotate(calc(var(--angle) * -1)); }
  .why-satellite-content h3 { font-size: 0.85rem; }
  .why-icon { width: 24px; height: 24px; }
  .why-center { width: 170px; height: 170px; }
  .why-center-title { font-size: 1.5rem; }
}
@media (max-width: 640px) {
  .why-orbit,
  .why-orbit * { pointer-events: none; }
  .why-orbit:hover .why-orbit-track,
  .why-orbit:hover .why-satellite-inner { animation-play-state: running; }
  .why-satellite:hover { z-index: auto; }
  .why-satellite:hover .why-satellite-content {
    transform: none;
    border-color: #e2ded6;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .why-satellite:hover .why-icon { transform: none; }
  .why-orbit { width: 360px; height: 360px; }
  .why-satellite { width: 90px; height: 90px; margin: -45px 0 0 -45px; transform: rotate(var(--angle)) translateY(-130px) rotate(calc(var(--angle) * -1)); }
  .why-satellite-content { padding: 0.5rem; gap: 0.25rem; }
  .why-satellite-content h3 { font-size: 0.6rem; }
  .why-icon { width: 18px; height: 18px; }
  .why-center { width: 120px; height: 120px; box-shadow: 0 14px 36px rgba(1,56,69,0.3), 0 0 0 8px rgba(1,56,69,0.08); }
  .why-center-label { font-size: 0.6rem; }
  .why-center-title { font-size: 1.05rem; }
}

/* Engagement carousel */
.engage-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0 1rem;
}
.engage-carousel::before,
.engage-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}
.engage-carousel::before {
  left: 0;
  background: linear-gradient(to right, #f7f6f2, rgba(247,246,242,0));
}
.engage-carousel::after {
  right: 0;
  background: linear-gradient(to left, #f7f6f2, rgba(247,246,242,0));
}
.engage-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  align-items: stretch;
  will-change: transform;
  animation: scrollCarousel 40s linear infinite;
}
.engage-carousel:hover .engage-track,
.engage-carousel:active .engage-track {
  animation-play-state: paused;
}
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.engage-carousel-reverse .engage-track {
  animation-name: scrollCarouselReverse;
}
@keyframes scrollCarouselReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.engage-card {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
@media (max-width: 640px) {
  .engage-card { width: 260px; padding: 1rem; }
  .engage-track { gap: 0.875rem; }
  .engage-carousel::before,
  .engage-carousel::after { width: 3rem; }
  .engage-card > p:nth-of-type(1)::after { font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .engage-card { width: 240px; padding: 0.875rem; }
  .engage-track { gap: 0.75rem; }
  .engage-carousel::before,
  .engage-carousel::after { width: 2.5rem; }
}

/* Services alternating layout */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .service-row { grid-template-columns: 1fr; gap: 2rem; } }

/* Footer */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* Form inputs contact page */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  color: #0f172a;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 200ms;
}
.form-input:focus { border-color: #0f172a; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 0.5rem;
}

/* Two-column form rows */
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) {
  .form-two-col { grid-template-columns: 1fr !important; }
}

/* Contact info grid */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: stretch;
}
.contact-grid > * { height: 100%; }
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > * { height: auto; }
}

/* Founders grid */
.founders-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2rem;
  align-items: start;
}
.founders-grid-reversed {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .founders-grid, .founders-grid-reversed { grid-template-columns: 1fr; }
}

/* What We Do grid */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) { .wwd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wwd-grid { grid-template-columns: 1fr; } }

/* Mission/Vision split */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;

}
@media (max-width: 768px) { .mv-grid { grid-template-columns: 1fr; } }

/* Approach/Values grid */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem;
  align-items: start;
}
@media (max-width: 1024px) { .approach-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* CTA contact section inside home */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: center;
}
@media (max-width: 1024px) { .cta-grid { grid-template-columns: 1fr; } }

/* Hover card effects */
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.service-card, .contact-card { transition: transform 300ms, box-shadow 300ms; }

/* Engage card hover */
.engage-card {
  position: relative;
  background: white;
  border: 1px solid #e2ded6;
  border-radius: 0.875rem;
  padding: 1.5rem;
  transition: background 300ms, border-color 300ms, transform 300ms, box-shadow 300ms;
  cursor: default;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
.engage-card > div:nth-of-type(2) > p:first-child::before {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseDot 1.8s ease-out infinite;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.engage-card > p:nth-of-type(1)::after {
  content: '★★★★☆';
  margin-left: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 0.5rem rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.engage-card:hover {
  background: white;
  border-color: #63aeb1;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(99,174,177,0.25), 0 8px 20px rgba(0,0,0,0.08);
}
.engage-card .accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0.75rem 0.75rem 0 0;
  background: linear-gradient(90deg, #63aeb1, #0d6b6e, #63aeb1);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms;
}
.engage-card:hover .accent-bar {
  transform: scaleX(1);
  animation: shimmer 1.5s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* approach step hover */
.approach-step {
  position: relative;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 300ms, background 300ms;
  cursor: default;
}
.approach-step:hover { border-color: rgba(99,174,177,0.5); background: rgba(255,255,255,0.05); }
.approach-step .left-bar {
  position: absolute;
  left: 0; top: 1rem; bottom: 1rem;
  width: 2px; border-radius: 9999px;
  background: #63aeb1;
  opacity: 0;
  transition: opacity 300ms;
}
.approach-step:hover .left-bar { opacity: 1; }
.approach-step:hover .step-text { color: rgba(255,255,255,0.8); }
.step-text { color: rgba(255,255,255,0.7); font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.7; transition: color 300ms; padding-top: 0.5rem; }
.step-num { font-family: 'Fraunces', Georgia, serif; font-size: 2.25rem; font-weight: 300; color: rgba(255,255,255,0.15); line-height: 1; flex-shrink: 0; transition: color 300ms; }
.approach-step:hover .step-num { color: rgba(99,174,177,0.5); }

/* value card hover */
.value-card {
  position: relative;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 300ms, background 300ms;
  cursor: default;
}
.value-card:hover { border-color: rgba(99,174,177,0.5); background: rgba(255,255,255,0.05); }
.value-card .left-bar {
  position: absolute;
  left: 0; top: 1rem; bottom: 1rem;
  width: 2px; border-radius: 9999px;
  background: #63aeb1;
  opacity: 0;
  transition: opacity 300ms;
}
.value-card:hover .left-bar { opacity: 1; }
.value-icon-wrap {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 300ms, border-color 300ms;
}
.value-card:hover .value-icon-wrap { background: rgba(99,174,177,0.2); border-color: rgba(99,174,177,0.4); }
.value-title { font-family: 'Fraunces', Georgia, serif; font-size: 1.125rem; color: white; margin-bottom: 0.375rem; transition: color 300ms; }
.value-card:hover .value-title { color: #63aeb1; }
.value-body { font-family: 'Inter', sans-serif; font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; transition: color 300ms; }
.value-card:hover .value-body { color: rgba(255,255,255,0.8); }

/* Light-bg variants for approach-step and value-card (about page) */
.approach-step-light {
  border-color: #e2ded6 !important;
  background: #f7f6f2;
}
.approach-step-light:hover { border-color: rgba(99,174,177,0.5) !important; background: white !important; }
.step-num-light { color: rgba(99,174,177,0.35) !important; }
.approach-step-light:hover .step-num-light { color: #63aeb1 !important; }
.step-text-light { color: #3d3d38 !important; }
.approach-step-light:hover .step-text-light { color: #1a1a18 !important; }

.value-card-light {
  border-color: #e2ded6 !important;
  background: #f7f6f2;
}
.value-card-light:hover { border-color: rgba(99,174,177,0.5) !important; background: white !important; }
.value-card-light .value-icon-wrap { background: rgba(99,174,177,0.1) !important; border-color: rgba(99,174,177,0.25) !important; }
.value-card-light:hover .value-icon-wrap { background: rgba(99,174,177,0.2) !important; border-color: rgba(99,174,177,0.4) !important; }
.value-title-light { font-family: 'Fraunces', Georgia, serif; font-size: 1.125rem; color: #1a1a18 !important; margin-bottom: 0.375rem; transition: color 300ms; }
.value-card-light:hover .value-title-light { color: #0d6b6e !important; }
.value-body-light { font-family: 'Inter', sans-serif; font-size: 1rem; color: #3d3d38 !important; line-height: 1.7; transition: color 300ms; }
.value-card-light:hover .value-body-light { color: #1a1a18 !important; }

/* Scroll down arrow on hero */
.hero-scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Form inside hero CTA */
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) {
  .cta-form-row { grid-template-columns: 1fr !important; }
}
.cta-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 200ms, background 200ms;
}
.cta-form-input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form-input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }

/* Popup success */
.popup-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  text-align: center;
}

/* Dot pattern */
.dot-pattern {
  background-image: radial-gradient(circle, #63aeb1 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Custom checkbox */
.pm-checkbox {
  width: 1rem; height: 1rem;
  border-radius: 0.25rem;
  border: 1px solid #cbd5e1;
  background: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
}
.pm-checkbox.checked { background: #63aeb1; border-color: #63aeb1; }
