/* ================= INFORMATION SECTION ================= */
.information-section {
  width: 100%;
  padding: 95px 0 80px; /* top/bottom padding */
  z-index: 1;
}

.information-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;         /* space between text and image */
  width: 90%;         /* match hero-inner width */
  max-width: 1200px;  /* match hero max-width */
  margin: 0 auto;
  flex-wrap: nowrap;  /* prevent image from dropping under text */
}

.information-left {
  flex: 0 0 54%;       /* slightly smaller to account for gap */
}

.information-right {
  flex: 0 1 42%;       /* allow shrinking if needed */
  display: flex;
  padding-top: 30px;  
  justify-content: center;
  align-items: center;
}

.information-title {
  font-size: clamp(1.8rem, 5vw, 3rem); /* responsive scaling */
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000;                          /* light mode */
}

body.dark .information-title {
  color: #ffffff;                       /* dark mode */
}

.information-paragraph {
  font-size: 1.25rem;
  line-height: 1.45;
  color: #000000ff;                     /* light mode */
  margin-bottom: 20px;
  text-align: justify;
}

body.dark .information-paragraph {
  color: #d0d0d0;                       /* dark mode */
}

.information-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.information-points li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #000000ff;
}

body.dark .information-points li {
  color: #d0d0d0;
}

.point-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  flex-shrink: 0;
}

.information-right img {
  max-width: 100%;
  
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.information-right img:hover {
  transform: translateY(-6px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .information-container {
    flex-direction: column;      /* stack text + image */
    align-items: flex-start;
    gap: 56px;                   /* spacing between text + image */
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
  }

  .information-left,
  .information-right {
    flex: unset;
    width: 100%;
  }

  .information-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

  .information-paragraph {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .information-points li {
    font-size: 1rem;
  }
}


/* ================= ABOUT VISUAL ================= */

.about-visual {
  position: relative;
  width: 500px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(0, 212, 195, 0.25);

  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark .about-visual {
  background: rgba(24, 53, 78, 0.45);
}

/* ================= RINGS ================= */

.rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

/* rotating wrapper */
.ring {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  animation: ringSpin linear infinite;
}

/* breathing circle */
.ring span {
  display: block;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 195, 0.35);
  animation: ringBreathe ease-in-out infinite;
}

/* sizes + timing */
.ring:nth-child(1) {
  animation-duration: 22s;
}
.ring:nth-child(1) span {
  width: 30%;
  height: 30%;
  animation-duration: 2.4s;
}

.ring:nth-child(2) {
  animation-duration: 32s;
}
.ring:nth-child(2) span {
  width: 50%;
  height: 50%;
  animation-duration: 2.6s;
}

.ring:nth-child(3) {
  animation-duration: 42s;
}
.ring:nth-child(3) span {
  width: 70%;
  height: 70%;
  animation-duration: 2.8s;
}

/* ================= CORE ================= */

.core {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(0, 212, 195, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: corePulse 2.2s ease-in-out infinite;
}

.core-inner {
  width: 48px;
  height: 48px;
  background: #00d4c3;
  border-radius: 50%;
}

/* ================= ORBIT DOTS ================= */

.orbits {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.orbits span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #00d4c3;
  border-radius: 50%;

  --radius: 120px;
  --pulse: 60px;

  animation:
    orbSpin 16s linear infinite,
    orbPulse 2.4s ease-in-out infinite;
}

/* directions */
.orbits span:nth-child(1) { --x: 0;  --y: -1; animation-delay: 0s; }
.orbits span:nth-child(2) { --x: 1;  --y: 0;  animation-delay: 0.4s; }
.orbits span:nth-child(3) { --x: 0;  --y: 1;  animation-delay: 0.8s; }
.orbits span:nth-child(4) { --x: -1; --y: 0;  animation-delay: 1.2s; }

/* ================= ANIMATIONS ================= */

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

@keyframes ringBreathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

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

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

@keyframes orbPulse {
  0% {
    transform:
      rotate(0deg)
      translate(calc(var(--x) * var(--radius)),
                calc(var(--y) * var(--radius)))
      scale(1);
    opacity: 0.7;
  }

  50% {
    transform:
      rotate(0deg)
      translate(calc(var(--x) * (var(--radius) + var(--pulse))),
                calc(var(--y) * (var(--radius) + var(--pulse))))
      scale(1.3);
    opacity: 1;
  }

  100% {
    transform:
      rotate(0deg)
      translate(calc(var(--x) * var(--radius)),
                calc(var(--y) * var(--radius)))
      scale(1);
    opacity: 0.7;
  }
}

#information {
  scroll-margin-top: 30px; /* space ABOVE the section */
}

@media (max-width: 768px) {
  .about-visual {
    width: min(85vw, 380px);
  }
}



