/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1f1f1f;
  background-color: #ffffff;
  font-size: 16px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 2rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 400;
}

a {
  color: #6ee7b7;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #4ade80;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 31, 31, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1f1f1f;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #1f1f1f;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #6ee7b7;
  background: rgba(110, 231, 183, 0.1);
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: #1f1f1f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Radar Icon Animations */
.radar-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-icon.small {
  width: 30px;
  height: 30px;
}

.radar-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #6ee7b7;
  border-radius: 50%;
  animation: radarPulse 2s infinite;
}

.radar-dot {
  width: 8px;
  height: 8px;
  background: #6ee7b7;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

@keyframes radarPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1f1f1f 0%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: #6ee7b7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #6ee7b7 0%, #4ade80 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(110, 231, 183, 0.3);
  color: white;
}

.button-radar {
  position: relative;
  width: 20px;
  height: 20px;
}

.button-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: buttonPulse 1.5s infinite;
}

@keyframes buttonPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.radar-display {
  position: relative;
  width: 300px;
  height: 300px;
}

.radar-circle {
  position: absolute;
  border: 2px solid rgba(110, 231, 183, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radar-circle-1 {
  width: 100px;
  height: 100px;
  animation: radarSpin 4s linear infinite;
}

.radar-circle-2 {
  width: 180px;
  height: 180px;
  animation: radarSpin 6s linear infinite reverse;
}

.radar-circle-3 {
  width: 260px;
  height: 260px;
  animation: radarSpin 8s linear infinite;
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #6ee7b7 50%,
    transparent 100%
  );
  transform-origin: left center;
  transform: translate(0, -50%);
  animation: radarSweep 3s linear infinite;
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #6ee7b7;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(110, 231, 183, 0.6);
}

.signal-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fbb6ce;
  border-radius: 50%;
  animation: signalPulse 2s infinite;
}

.signal-1 {
  top: 30%;
  right: 25%;
  animation-delay: 0s;
}

.signal-2 {
  bottom: 35%;
  left: 20%;
  animation-delay: 0.7s;
}

.signal-3 {
  top: 60%;
  right: 40%;
  animation-delay: 1.4s;
}

@keyframes radarSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes radarSweep {
  from {
    transform: translate(0, -50%) rotate(0deg);
  }
  to {
    transform: translate(0, -50%) rotate(360deg);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Featured Articles */
.featured-articles {
  padding: 80px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #1f1f1f;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.articles-grid.full {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.article-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(110, 231, 183, 0.1);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(110, 231, 183, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f1f1f;
}

.card-excerpt {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  color: #6ee7b7;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #4ade80;
  transform: translateX(4px);
}

/* Card Icon Animations */
.signal-waves {
  position: relative;
  width: 100%;
  height: 100%;
}

.wave {
  position: absolute;
  border: 2px solid #6ee7b7;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: waveExpand 2s infinite;
}

.wave-1 {
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.wave-2 {
  width: 35px;
  height: 35px;
  animation-delay: 0.3s;
}

.wave-3 {
  width: 50px;
  height: 50px;
  animation-delay: 0.6s;
}

@keyframes waveExpand {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.heart-radar {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heart-pulse {
  width: 30px;
  height: 30px;
  background: #fbb6ce;
  border-radius: 50%;
  position: relative;
  animation: heartBeat 1.5s infinite;
}

.heart-pulse::before,
.heart-pulse::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #fbb6ce;
  border-radius: 50%;
  top: 0;
}

.heart-pulse::before {
  left: -15px;
}

.heart-pulse::after {
  right: -15px;
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.trust-meter {
  position: relative;
  width: 50px;
  height: 30px;
  border: 2px solid #6ee7b7;
  border-radius: 15px;
}

.meter-fill {
  position: absolute;
  top: 2px;
  left: 2px;
  height: calc(100% - 4px);
  background: linear-gradient(90deg, #6ee7b7 0%, #4ade80 100%);
  border-radius: 12px;
  animation: meterFill 3s infinite;
}

@keyframes meterFill {
  0% {
    width: 20%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 20%;
  }
}

/* About Preview */
.about-preview {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  text-align: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
  color: #1f1f1f;
}

.about-content p {
  font-size: 1.125rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.tagline {
  font-style: italic;
  color: #6ee7b7;
  font-weight: 500;
}

/* View All */
.view-all {
  text-align: center;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6ee7b7;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #6ee7b7;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  background: #6ee7b7;
  color: white;
  transform: translateY(-2px);
}

/* Page Header */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  text-align: center;
}

.page-title {
  margin-bottom: 1rem;
  color: #1f1f1f;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Articles Listing */
.articles-listing {
  padding: 60px 0 80px;
}

/* Article Page */
.article-page {
  padding-top: 70px;
}

.article-header {
  padding: 60px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.article-category {
  background: rgba(110, 231, 183, 0.1);
  color: #6ee7b7;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.article-title {
  text-align: center;
  margin-bottom: 1rem;
}

.article-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.article-content {
  padding: 60px 0 80px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.article-intro {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.7;
}

.article-content ul {
  margin: 1rem 0 1rem 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  color: #666;
}

/* About Page Specific */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text h2 {
  color: #1f1f1f;
  margin-bottom: 1.5rem;
}

.mission-list,
.approach-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.mission-list li,
.approach-list li {
  margin-bottom: 0.75rem;
  color: #666;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-radar {
  position: relative;
  width: 300px;
  height: 300px;
}

.mission-points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mission-point {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.point-1 {
  top: 20%;
  right: 20%;
}

.point-2 {
  bottom: 30%;
  left: 15%;
}

.point-3 {
  top: 50%;
  right: 10%;
}

.point-pulse {
  width: 12px;
  height: 12px;
  background: #fbb6ce;
  border-radius: 50%;
  animation: pointPulse 2s infinite;
}

.point-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6ee7b7;
  white-space: nowrap;
}

@keyframes pointPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.values-section {
  margin: 4rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(110, 231, 183, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-section {
  margin-top: 4rem;
}

/* Resources Page */
.resources-content {
  padding: 60px 0 80px;
}

.resource-category {
  margin-bottom: 4rem;
}

.resource-category h2 {
  margin-bottom: 2rem;
  color: #1f1f1f;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(110, 231, 183, 0.1);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(110, 231, 183, 0.3);
}

.resource-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.disclaimer {
  background: rgba(251, 182, 206, 0.1);
  border: 1px solid rgba(251, 182, 206, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 4rem;
}

.disclaimer h3 {
  color: #1f1f1f;
  margin-bottom: 1rem;
}

.disclaimer p {
  color: #666;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: #1f1f1f;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
}

.footer-text {
  color: #999;
  margin: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hero-content {
    text-align: left;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

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

@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-visual {
    height: 300px;
  }

  .radar-display {
    width: 250px;
    height: 250px;
  }

  .featured-articles,
  .articles-listing {
    padding: 60px 0;
  }

  .article-content {
    padding: 40px 0 60px;
  }
}

/* Additional Icon Animations for Resource Cards */
.assessment-meter {
  position: relative;
  width: 40px;
  height: 20px;
  border: 2px solid #6ee7b7;
  border-radius: 10px;
}

.meter-bar {
  position: absolute;
  top: 2px;
  left: 2px;
  height: calc(100% - 4px);
  width: 60%;
  background: #6ee7b7;
  border-radius: 8px;
  animation: meterGlow 2s infinite;
}

.meter-indicator {
  position: absolute;
  top: -5px;
  right: 30%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 8px solid #fbb6ce;
}

@keyframes meterGlow {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(110, 231, 183, 0.5);
  }
}

.values-compass {
  position: relative;
  width: 50px;
  height: 50px;
}

.compass-face {
  width: 100%;
  height: 100%;
  border: 3px solid #6ee7b7;
  border-radius: 50%;
  position: relative;
}

.compass-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  background: #fbb6ce;
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(45deg);
  animation: compassSpin 4s linear infinite;
}

@keyframes compassSpin {
  from {
    transform: translate(-50%, -100%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -100%) rotate(360deg);
  }
}

.boundary-shield {
  position: relative;
  width: 50px;
  height: 50px;
}

.shield-outline {
  width: 100%;
  height: 100%;
  border: 3px solid #6ee7b7;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.shield-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #fbb6ce;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: shieldPulse 2s infinite;
}

@keyframes shieldPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Additional card icons for variety */
.connection-dots {
  position: relative;
  width: 50px;
  height: 30px;
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #6ee7b7;
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

.dot-1 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.dot-2 {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 1s;
}

.connection-line {
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg, #6ee7b7 0%, #fbb6ce 100%);
  transform: translateY(-50%);
  animation: lineGlow 2s infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

@keyframes lineGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(110, 231, 183, 0.5);
  }
}

.energy-shield {
  position: relative;
  width: 50px;
  height: 50px;
  border: 2px solid #6ee7b7;
  border-radius: 50%;
}

.shield-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: radial-gradient(
    circle,
    rgba(110, 231, 183, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: energyGlow 3s infinite;
}

@keyframes energyGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

/* Additional Icon Animations for About, Articles, and Resources Pages */

/* About Page Value Icons */
.authenticity-symbol {
  position: relative;
  width: 50px;
  height: 50px;
}

.auth-ring {
  width: 100%;
  height: 100%;
  border: 3px solid #6ee7b7;
  border-radius: 50%;
  animation: authPulse 3s infinite;
}

.auth-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #fbb6ce;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: centerGlow 2s infinite alternate;
}

@keyframes authPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes centerGlow {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.empathy-heart {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heart-waves {
  width: 30px;
  height: 30px;
  background: #fbb6ce;
  border-radius: 50%;
  position: relative;
  animation: heartWaves 2s infinite;
}

.heart-waves::before,
.heart-waves::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #fbb6ce;
  border-radius: 50%;
  animation: waveRipple 2s infinite;
}

.heart-waves::before {
  animation-delay: 0.5s;
}

.heart-waves::after {
  animation-delay: 1s;
}

@keyframes heartWaves {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes waveRipple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.wisdom-eye {
  position: relative;
  width: 50px;
  height: 30px;
  border: 3px solid #6ee7b7;
  border-radius: 50px;
  overflow: hidden;
}

.eye-iris {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #6ee7b7;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: eyeMove 4s infinite;
}

.eye-pupil {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #1f1f1f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: eyeMove 4s infinite;
}

@keyframes eyeMove {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  25% {
    transform: translate(-30%, -50%);
  }
  75% {
    transform: translate(-70%, -50%);
  }
}

/* Resources Page Icons */
.signal-decoder {
  position: relative;
  width: 50px;
  height: 40px;
}

.decoder-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6ee7b7 0%, #4ade80 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.decoder-signals {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #ffffff 0px,
    #ffffff 4px,
    transparent 4px,
    transparent 8px
  );
  animation: signalScroll 2s linear infinite;
}

@keyframes signalScroll {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.red-flag-alert {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-triangle {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid #fbb6ce;
  position: relative;
}

.alert-triangle::after {
  content: "!";
  position: absolute;
  top: 8px;
  left: -3px;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.alert-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid #fbb6ce;
  border-radius: 50%;
  animation: alertPulse 1.5s infinite;
}

@keyframes alertPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.conversation-flow {
  position: relative;
  width: 50px;
  height: 40px;
}

.flow-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flow-bubbles::before,
.flow-bubbles::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #6ee7b7;
  border-radius: 50%;
  animation: bubbleFloat 3s infinite;
}

.flow-bubbles::before {
  top: 5px;
  left: 5px;
  animation-delay: 0s;
}

.flow-bubbles::after {
  bottom: 5px;
  right: 5px;
  animation-delay: 1.5s;
}

.flow-line {
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, #6ee7b7 0%, #fbb6ce 100%);
  transform: translateY(-50%);
  animation: flowPulse 2s infinite;
}

@keyframes bubbleFloat {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(110, 231, 183, 0.5);
  }
}

.journal-pages {
  position: relative;
  width: 50px;
  height: 40px;
}

.page {
  position: absolute;
  width: 30px;
  height: 35px;
  background: white;
  border: 2px solid #6ee7b7;
  border-radius: 4px;
}

.page-1 {
  top: 0;
  left: 5px;
  z-index: 1;
}

.page-2 {
  top: 3px;
  left: 8px;
  z-index: 2;
  animation: pageFlip 3s infinite;
}

.journal-pen {
  position: absolute;
  top: 15px;
  right: 5px;
  width: 3px;
  height: 15px;
  background: #fbb6ce;
  border-radius: 2px;
  transform: rotate(45deg);
  z-index: 3;
}

@keyframes pageFlip {
  0%,
  80%,
  100% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(180deg);
  }
}

.growth-tree {
  position: relative;
  width: 50px;
  height: 50px;
}

.tree-trunk {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 8px;
  height: 25px;
  background: #8b4513;
  border-radius: 4px;
  transform: translateX(-50%);
}

.tree-leaves {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 30px;
  height: 30px;
  background: #6ee7b7;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: treeGrow 4s infinite;
}

.tree-leaves::before,
.tree-leaves::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #4ade80;
  border-radius: 50%;
}

.tree-leaves::before {
  top: -5px;
  left: -5px;
  animation: leafSway 3s infinite;
}

.tree-leaves::after {
  bottom: -5px;
  right: -5px;
  animation: leafSway 3s infinite reverse;
}

@keyframes treeGrow {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
}

@keyframes leafSway {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.mindfulness-circle {
  position: relative;
  width: 50px;
  height: 50px;
}

.circle-outer {
  width: 100%;
  height: 100%;
  border: 3px solid #6ee7b7;
  border-radius: 50%;
  animation: outerRotate 8s linear infinite;
}

.circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid #fbb6ce;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: innerRotate 6s linear infinite reverse;
}

.mindful-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: mindfulPulse 2s infinite;
}

@keyframes outerRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes innerRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes mindfulPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

.message-craft {
  position: relative;
  width: 50px;
  height: 40px;
}

.craft-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  border: 2px solid #6ee7b7;
  border-radius: 8px;
  position: relative;
}

.craft-screen::before,
.craft-screen::after {
  content: "";
  position: absolute;
  left: 8px;
  height: 2px;
  background: #6ee7b7;
  border-radius: 1px;
}

.craft-screen::before {
  top: 10px;
  width: 60%;
}

.craft-screen::after {
  top: 18px;
  width: 40%;
}

.craft-cursor {
  position: absolute;
  top: 18px;
  right: 15px;
  width: 1px;
  height: 8px;
  background: #fbb6ce;
  animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.tone-analyzer {
  position: relative;
  width: 50px;
  height: 40px;
}

.analyzer-wave {
  position: absolute;
  bottom: 5px;
  left: 10%;
  right: 10%;
  height: 20px;
  background: linear-gradient(90deg, #6ee7b7 0%, #4ade80 50%, #fbb6ce 100%);
  border-radius: 10px 10px 0 0;
  animation: waveAnalyze 2s infinite;
}

.analyzer-reading {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 20px;
  height: 3px;
  background: #fbb6ce;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: readingMove 3s infinite;
}

@keyframes waveAnalyze {
  0%,
  100% {
    height: 15px;
  }
  50% {
    height: 25px;
  }
}

@keyframes readingMove {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    transform: translateX(-50%) scaleX(1.5);
  }
}

.conflict-resolution {
  position: relative;
  width: 50px;
  height: 40px;
}

.resolution-bridge {
  position: absolute;
  bottom: 10px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: #6ee7b7;
  border-radius: 2px;
}

.resolution-bridge::before,
.resolution-bridge::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 15px;
  background: #4ade80;
  border-radius: 2px;
}

.resolution-bridge::before {
  left: 20%;
}

.resolution-bridge::after {
  right: 20%;
}

.resolution-hands {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 20px;
  height: 15px;
  transform: translateX(-50%);
}

.resolution-hands::before,
.resolution-hands::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fbb6ce;
  border-radius: 50%;
  animation: handshake 2s infinite;
}

.resolution-hands::before {
  left: 0;
}

.resolution-hands::after {
  right: 0;
  animation-delay: 1s;
}

@keyframes handshake {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Article Page Specific Icons */
.emotional-compass {
  position: relative;
  width: 50px;
  height: 50px;
}

.compass-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  background: #fbb6ce;
  border-radius: 1px;
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(0deg);
  animation: compassRotate 8s linear infinite;
}

.compass-needle::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 6px solid #fbb6ce;
}

.compass-ring {
  width: 100%;
  height: 100%;
  border: 3px solid #6ee7b7;
  border-radius: 50%;
  position: relative;
}

.compass-ring::before,
.compass-ring::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #4ade80;
  border-radius: 50%;
}

.compass-ring::before {
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.compass-ring::after {
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes compassRotate {
  from {
    transform: translate(-50%, -100%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -100%) rotate(360deg);
  }
}

.transition-bridge {
  position: relative;
  width: 50px;
  height: 40px;
}

.bridge-span {
  position: absolute;
  bottom: 15px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, #6ee7b7 0%, #fbb6ce 100%);
  border-radius: 2px;
  animation: bridgeGlow 3s infinite;
}

.bridge-support {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 3px;
  height: 20px;
  background: #4ade80;
  border-radius: 2px;
  transform: translateX(-50%);
}

.bridge-support::before,
.bridge-support::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 15px;
  height: 2px;
  background: #6ee7b7;
  border-radius: 1px;
}

.bridge-support::before {
  left: -15px;
  transform: rotate(30deg);
}

.bridge-support::after {
  right: -15px;
  transform: rotate(-30deg);
}

@keyframes bridgeGlow {
  0%,
  100% {
    opacity: 0.8;
    box-shadow: 0 0 5px rgba(110, 231, 183, 0.3);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(110, 231, 183, 0.6);
  }
}

.healing-heart {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heart-mend {
  width: 30px;
  height: 30px;
  background: #fbb6ce;
  border-radius: 50%;
  position: relative;
  animation: heartHeal 3s infinite;
}

.heart-mend::before,
.heart-mend::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #fbb6ce;
  border-radius: 50%;
  top: 0;
}

.heart-mend::before {
  left: -15px;
}

.heart-mend::after {
  right: -15px;
}

.healing-glow {
  position: absolute;
  width: 45px;
  height: 45px;
  border: 2px solid #6ee7b7;
  border-radius: 50%;
  animation: healingPulse 2s infinite;
}

@keyframes heartHeal {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
}

@keyframes healingPulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.timing-clock {
  position: relative;
  width: 50px;
  height: 50px;
}

.clock-hand {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 15px;
  background: #fbb6ce;
  border-radius: 1px;
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(0deg);
  animation: clockTick 4s linear infinite;
}

.clock-tick {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 20px;
  background: #6ee7b7;
  border-radius: 1px;
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(90deg);
  animation: clockTick 12s linear infinite;
}

.timing-clock::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 3px solid #6ee7b7;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.timing-clock::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes clockTick {
  from {
    transform: translate(-50%, -100%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -100%) rotate(360deg);
  }
}

.healing-heart img {
  animation: healingPulse 3.5s ease-in-out infinite,
    healingSway 6s ease-in-out infinite;
  transform-origin: 50% 70%;
}
@keyframes healingPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0px #fbb6ce88) brightness(1);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 8px #fbb6cecc) brightness(1.08);
    transform: scale(1.06);
  }
}
@keyframes healingSway {
  0%,
  100% {
    transform: rotate(-2deg) scale(1);
  }
  20% {
    transform: rotate(2deg) scale(1.01);
  }
  40% {
    transform: rotate(-1deg) scale(1.03);
  }
  60% {
    transform: rotate(1deg) scale(1.02);
  }
  80% {
    transform: rotate(-2deg) scale(1.01);
  }
}

.profile-lens {
  position: relative;
  width: 50px;
  height: 50px;
}

.lens-ring {
  width: 100%;
  height: 100%;
  border: 4px solid #6ee7b7;
  border-radius: 50%;
  position: relative;
  animation: lensRotate 6s linear infinite;
}

.lens-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle,
    rgba(110, 231, 183, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: lensFocus 2s infinite;
}

.lens-ring::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 15px;
  height: 4px;
  background: #fbb6ce;
  border-radius: 2px;
  transform: rotate(45deg);
}

@keyframes lensRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes lensFocus {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.red-flags {
  position: relative;
  width: 50px;
  height: 40px;
}

.flag {
  position: absolute;
  width: 20px;
  height: 15px;
  background: #fbb6ce;
  border-radius: 2px;
  animation: flagWave 2s infinite;
}

.flag::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 25px;
  background: #8b4513;
  border-radius: 2px;
}

.flag-1 {
  top: 5px;
  left: 10px;
  animation-delay: 0s;
}

.flag-2 {
  top: 15px;
  right: 10px;
  animation-delay: 1s;
}

@keyframes flagWave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

.text-analysis {
  position: relative;
  width: 50px;
  height: 40px;
}

.text-line {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  background: #6ee7b7;
  border-radius: 2px;
  animation: textScan 3s infinite;
}

.text-line:first-child {
  top: 10px;
  animation-delay: 0s;
}

.text-line:last-of-type {
  top: 20px;
  animation-delay: 1.5s;
}

.analysis-dot {
  position: absolute;
  top: 30px;
  right: 10px;
  width: 6px;
  height: 6px;
  background: #fbb6ce;
  border-radius: 50%;
  animation: analysisBlink 1s infinite;
}

@keyframes textScan {
  0%,
  100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

@keyframes analysisBlink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

/* Performance optimizations */
.radar-pulse,
.button-pulse,
.point-pulse,
.heart-pulse {
  will-change: transform, opacity;
}

.radar-sweep,
.compass-arrow {
  will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
.nav-link:focus,
.cta-button:focus,
.read-more:focus,
.view-all-link:focus {
  outline: 2px solid #6ee7b7;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .hero-visual,
  .radar-display {
    display: none;
  }

  .hero {
    padding: 2rem 0;
  }

  .article-content {
    padding: 1rem 0;
  }
}
