/* Base styles */
.responsive-two-column-grid {
  display: grid;
  grid-template-columns: 70fr 30fr;
  gap: 4rem;
  padding: 2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.lit-left {
  width: 100%;
  padding: 1rem;
  margin: 0 3rem;
}

.lit-right {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* 🔽 On smaller screens, prevent weird spacing */
@media (max-width: 768px) {
  .lit-left, .lit-right {
    width: auto;  /* Let them size naturally */
    margin: 0 1rem; /* Reduce excessive margins */
    padding: 0rem;
  }
}

.loading-image {
  max-width: 100%;
  min-width: 200px;
  height: auto;
  margin-left: auto;
  display: block;
}

.lit-quality {
  font-family: "Rethink Sans-Bold", Helvetica;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  background: none;
  /* Remove default background */
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.lit-quality:hover {
  background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(62, 99, 221, 0.1) 50%);
  background-size: 200% 100%;
  background-position: -100% 0;
}

.lit-body {
  font-family: "Rethink Sans-Bold", Helvetica;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  /* Increased from 1rem to 1.2rem minimum */
  line-height: 1.5;
  font-weight: 500;
}

.record-time {
  color: #3E63DD;
  position: relative;
  z-index: 3;
}

.beta-button {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  font-family: "Rethink Sans-Bold", Helvetica;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  background: linear-gradient(45deg, #3E63DD, #5c7ee5);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(62, 99, 221, 0.3);
  animation: buttonGlow 4s infinite;
  position: relative;
  overflow: hidden;
}

/* Add subtle gradient shimmer effect */
.beta-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: rotate(45deg);
  animation: shimmerEffect 3s infinite;
  pointer-events: none;
}

@keyframes shimmerEffect {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* Enhanced hover effect */
.beta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, #5c7ee5, #3E63DD);
  box-shadow:
    0 8px 25px rgba(62, 99, 221, 0.5),
    0 4px 10px rgba(62, 99, 221, 0.3);
}

/* Keep existing glow animation */
@keyframes buttonGlow {
  0% {
    box-shadow: 0 4px 15px rgba(62, 99, 221, 0.3);
  }

  15% {
    box-shadow: 0 4px 25px rgba(62, 99, 221, 0.5);
  }

  30% {
    box-shadow: 0 4px 15px rgba(62, 99, 221, 0.3);
  }

  100% {
    box-shadow: 0 4px 15px rgba(62, 99, 221, 0.3);
  }
}

/* Add focus state for accessibility */
.beta-button:focus {
  outline: none;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px rgba(62, 99, 221, 0.4);
}

/* Add active state */
.beta-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(62, 99, 221, 0.4);
}

/* Features section */
.responsive-two-column-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 255, 0.9) 100%);
  border-radius: 20px;
  margin: 2rem 5%;
  padding: 3rem;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(62, 99, 221, 0.1);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 12px 32px rgba(62, 99, 221, 0.2),
    0 2px 8px rgba(62, 99, 221, 0.1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(62, 99, 221, 0.05), rgba(92, 126, 229, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card-title {
  font-family: "Rethink Sans-Bold", Helvetica;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  font-weight: bold;
  background: linear-gradient(45deg, #3E63DD, #5c7ee5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-description {
  font-family: "Rethink Sans-Bold", Helvetica;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.5;
  font-weight: 500;
}

/* Principles section */
.responsive-three-column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.principles-image {
  max-width: 80px;
  height: auto;
  margin-bottom: 0rem;
  transition: transform 0.3s ease;
}

.principles-image:hover {
  transform: scale(1.1);
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .responsive-two-column-grid {
    grid-template-columns: 1fr;
  }

  .lit-left,
  .lit-right {
    margin: 0 1rem;
  }

  .loading-image {
    max-width: 70%;
    margin: 2rem auto;
  }

  /* Layout adjustments */
  .responsive-two-column-grid {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    gap: 1rem;
  }

  /* Image adjustments */
  .loading-image {
    max-width: 80%;
    min-width: auto;
    margin: 0 auto;
  }

  .supercharged-image {
    max-width: 70%;
    margin: 1rem auto;
  }

  /* Text adjustments */
  .lit-quality {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .lit-body {
    font-size: clamp(1rem, calc(16px + 1vw), 1.2rem);
    /* Increased from 8px to ensure minimum 16px */
    padding: 0 1rem;
    margin-bottom: 1rem;
  }

  .supercharged,
  .supercharged-body {
    font-size: calc(8px + 1vw);
    text-align: center;
    padding: 0 1rem;
  }

  /* Features section */
  .features {
    padding: 2rem 1rem;
    margin: 1rem;
  }

  .features-header {
    font-size: calc(16px + 2vw);
    margin-bottom: 0.5rem;
  }

  .features-body {
    font-size: clamp(16px, calc(16px + 0.8vw), 22px);
    line-height: 1.6;
    margin: 1.5rem auto;
    padding: 0 1rem;
  }

  /* Cards adjustments */
  .responsive-two-column-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .card {
    width: 100%;
    max-width: none;
    padding: 1.5rem;
    margin: 0.5rem 0;
    transform: none !important;
  }

  .card-title {
    font-size: calc(8px + 1.5vw);
    margin-bottom: 0.5rem;
  }

  .card-description {
    font-size: calc(8px + 0.8vw);
  }

  /* Principles section */
  .responsive-three-column-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .principles-image {
    max-width: 50px;
    margin: 0.5rem auto;
  }

  .principles-header {
    font-size: calc(10px + 2vw);
  }

  .principles-body {
    font-size: calc(8px + 1vw);
    margin-top: -1rem;
  }

  /* Button adjustments */
  .beta-button {
    width: 80%;
    max-width: 250px;
    padding: 0.8rem 1.5rem;
    font-size: calc(8px + 1vw);
    margin: 1rem auto;
  }

  /* Animation adjustments */
  .card:hover,
  .principles-image:hover {
    transform: none;
  }

  /* Spacing adjustments */
  #stack-padding {
    padding: 1rem 0;
  }

  #stack-padding-two {
    padding: 2rem 0;
  }

  /* Grid order adjustments */
  .lit-right {
    order: -1;
  }

  #stack-order-text {
    order: 2;
  }

  #stack-order-image {
    order: 1;
  }

  /* Effects adjustments */
  .features::before {
    width: 20px;
    height: 2px;
  }

  .particles {
    opacity: 0.3;
  }

  /* Disable complex animations for better performance */
  .card,
  .features,
  .responsive-super-grid {
    backdrop-filter: none;
    animation: none;
  }

  /* Increase base font size for supercharged-body */
  .supercharged-body {
    font-size: calc(18px + 1vw);
    /* Increased from 14px to 18px */
    text-align: center;
    padding: 0 1rem;
  }

  .supercharged {
    margin-bottom: 0.3rem;
    /* Even smaller margin on mobile */
  }

  .supercharged-body {
    margin-top: 0.3rem;
    font-size: calc(18px + 1vw);
    text-align: center;
    padding: 0 1rem;
  }

  .supercharged {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    /* Changed max from 2rem to 2.5rem */
  }

  .features-body {
    font-size: clamp(16px, calc(16px + 0.8vw), 22px);
    line-height: 1.6;
    margin: 1.5rem auto;
    padding: 0 1rem;
  }

  .super-styles,
  .lit-left {
    margin: 0 1rem;
  }
}

/* Small mobile adjustments */
@media screen and (max-width: 480px) {
  .lit-quality {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .card {
    padding: 1rem;
  }

  .beta-button {
    width: 90%;
    padding: 0.6rem 1rem;
  }

  .features-header,
  .principles-header {
    font-size: calc(16px + 1.8vw);
  }

  .loading-image {
    max-width: 90%;
  }
}

/* Very small screens */
@media screen and (max-width: 320px) {
  .lit-quality {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .card {
    padding: 0.8rem;
  }

  .features-header,
  .principles-header {
    font-size: calc(16px + 1.5vw);
  }

  .beta-button {
    padding: 0.5rem 0.8rem;
    font-size: calc(8px + 0.8vw);
  }

  /* Increase base font size for supercharged-body */
  .supercharged-body {
    font-size: calc(14px, calc(14px + 0.8vw), 20px);
    /* Increased minimum size */
  }

  .supercharged {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    /* Keeping max at 2rem for very small screens */
  }

  .features-body {
    font-size: clamp(14px, calc(14px + 0.8vw), 20px);
    /* Increased minimum size */
  }

  .principles-body {
    font-size: calc(8px + 0.8vw);
    /* Consistent small screen size */
  }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .responsive-two-column-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .card {
    width: 100%;
  }

  .loading-image {
    max-width: 90%;
  }

  .lit-quality {
    font-size: calc(10px + 1.8vw);
  }

  .supercharged {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    /* Changed max from 2rem to 2.5rem */
  }
}

/* Utility classes */
.features {
  text-align: center;
  padding: 2rem 5%;
  position: relative;
  z-index: 2;
}

.features-header {
  font-family: "Rethink Sans-Bold", Helvetica;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: linear-gradient(90deg, #3E63DD, #5c7ee5, #3E63DD);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-header::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: #3E63DD;
  transition: all 0.3s ease;
}

.features-header:hover::after {
  width: 100%;
  left: 0;
}

.features-body {
  font-family: "Rethink Sans-Bold", Helvetica;
  font-size: clamp(18px, calc(18px + 0.5vw), 24px);
  line-height: 1.8;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
  /* Remove top margin since we added it to header */
  padding: 0 1rem;
}

#stack-padding {
  padding: 2rem 0;
}

#stack-padding-two {
  padding: 4rem 0;
}

.responsive-super-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.responsive-super-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 20px;
  animation: borderFlow 4s linear infinite;
}

@keyframes borderFlow {
  0% {
    border-color: rgba(62, 99, 221, 0);
  }

  50% {
    border-color: rgba(62, 99, 221, 0.3);
  }

  100% {
    border-color: rgba(62, 99, 221, 0);
  }
}

/* tablet breakpoint */
@media (min-width:768px) {
  .responsive-two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .super-styles {
    position: relative;
    transform: none;
    padding: 2rem 0;
  }

  .responsive-two-column-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns: image and text */
    place-items: center;
  }

  .card {
    width: 400px;
    /* Optional: Set a max width */
    /* place-items: center; */
  }

}

/* tablet breakpoint */
@media (max-width:768px) {
  #stack-order-text {
    order: 2;
  }

  #stack-order-image {
    order: 1;
  }

  #stack-padding {
    padding-top: 2rem;
  }

  #stack-padding-two {
    padding-top: 7rem;
  }

  .responsive-super-grid {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    grid-template-areas:
      "right"
      "left";

  }

  .responsive-two-column-features {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    margin: auto;
    place-items: center;
    max-width: 350px;
  }

  .paragon-laptop {
    padding-top: 10rem;
    display: block;
  }

  .responsive-three-column-grid {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    margin: auto;
    place-items: center;
    max-width: 350px;
  }

  .lit-right {
    padding-right: 0px;
  }

  .loading-image {
    margin-right: auto;

  }

  img.supercharged-image {
    margin: 3.5rem auto 1rem;
  }

  .super-styles {
    position: relative;
    transform: none;
    text-align: center;
    margin: 1rem 0;
    height: auto;
  }

  .supercharged,
  .supercharged-body {
    font-size: calc(8px + 1vw);
    margin: 1rem 0;
  }
}

video {
  height: auto;
  display: block;
  margin: 1rem auto;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.2), 0 12px 27px 0 rgba(0, 0, 0, 0.19);
}

.super-highlight,
.accelerate-highlight,
.rigor-highlight {
  color: #3E63DD;
  position: relative;
  z-index: 3;
  display: inline-block;
  background: none;
  /* Remove default background */
  transition: all 0.3s ease;
}

/* Style for the highlight effect on hover */
.super-highlight:hover,
.accelerate-highlight:hover,
.rigor-highlight:hover {
  background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(62, 99, 221, 0.1) 50%);
  background-size: 200% 100%;
  background-position: -100% 0;
}

.supercharged {
  font-family: "Rethink Sans-Bold", Helvetica;
  font-weight: bolder;
  font-size: calc(25px + 1.5vw);
  z-index: 3;
  margin-bottom: 0rem;
  line-height: 1;
}

.supercharged-body {
  font-family: "Rethink Sans-Bold", Helvetica;
  font-weight: 500;
  font-size: calc(16px + 0.5vw);
  z-index: 3;
  margin-top: 0rem;
  color: #4B5563;
  line-height: 1.4;
}

.supercharged-image {
  width: 90%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 1rem auto;
  animation: float 6s ease-in-out infinite;
}

.super-styles {
  padding: 1rem;
  margin: 0 3rem;
  line-height: 1.5;
  position: relative;
}

.super-styles p {
  line-height: 1.5;
  margin: 1rem 0;
  transform: none;
}

#stack-order-text {
  grid-area: left;
}

#stack-order-image {
  grid-area: right;
}


body {
  background: #F8F9FF;
  /* Restore the original light blue background */
  margin: 1rem;
}

.paragon-laptop {
  position: absolute;
  right: 0;
  width: auto;
  max-width: 15%;
  height: auto;
  margin-top: -7rem;
  z-index: 1;
  /* Lower stack order */
}

.features {
  text-align: center;
  position: relative;
  z-index: 2;
}

.principles-header {
  font-family: "Rethink Sans-Bold", Helvetica;
  font-weight: bolder;
  font-size: calc(13px + 1.5vw);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.principles-body {
  font-family: "Rethink Sans-Bold", Helvetica;
  font-weight: 500;
  font-size: calc(10px + 0.5vw);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .responsive-two-column-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .card {
    width: 100%;
  }

  .loading-image {
    max-width: 90%;
  }
}

/* Ensure content doesn't get too wide on large screens */
@media screen and (min-width: 1400px) {

  .responsive-two-column-grid,
  .responsive-two-column-features,
  .responsive-three-column-grid {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* Remove highlight for very small screens */
@media screen and (max-width: 300px) {
  .record-time::after {
    display: none;
    /* Hide highlight */
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add decorative elements */
.features::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  width: 40px;
  height: 4px;
  background: #3E63DD;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Enhance principles section */
.principles-image:hover {
  transform: scale(1.1);
}

/* Add smooth scroll reveal animations */
.responsive-super-grid {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.responsive-super-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add text reveal animation for headers */
.features-header,
.principles-header {
  position: relative;
  overflow: hidden;
}

.features-header::before,
.principles-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Add floating particles background */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
  background:
    radial-gradient(circle at 20% 30%, rgba(62, 99, 221, 0.05) 0%, transparent 8%),
    radial-gradient(circle at 80% 70%, rgba(62, 99, 221, 0.05) 0%, transparent 8%);
  animation: particlesMove 20s infinite linear;
}

@keyframes particlesMove {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* Add smooth scroll snap */
.scroll-container {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}

.scroll-section {
  scroll-snap-align: start;
  height: 100vh;
}

/* Add text gradient animation */
@keyframes textGradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.features-header {
  background: linear-gradient(90deg, #3E63DD, #5c7ee5, #3E63DD);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradient 3s linear infinite;
}

/* Add image parallax effect */
.parallax-wrapper {
  position: relative;
  overflow: hidden;
}

.parallax-image {
  transform: translateZ(-1px) scale(2);
  z-index: -1;
}

/* Add smooth reveal on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add glass morphism cards with neon glow */
.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(62, 99, 221, 0.1),
    0 0 0 1px rgba(62, 99, 221, 0.05),
    inset 0 0 32px rgba(62, 99, 221, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow:
    0 8px 32px rgba(62, 99, 221, 0.2),
    0 0 0 1px rgba(62, 99, 221, 0.1),
    inset 0 0 32px rgba(62, 99, 221, 0.1);
}

/* Add mobile-friendly adjustments */
@media (max-width: 768px) {
  .card {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.9);
  }

  .parallax-image {
    transform: none;
  }

  .particles {
    display: none;
  }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .supercharged {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    /* Changed max from 2rem to 2.5rem */
    line-height: 1.3;
  }

  .super-styles {
    text-align: center;
    margin: 1rem 0;
    height: auto;
    padding: 0;
    /* Keep consistent with desktop */
  }
}

/* Very small screens */
@media screen and (max-width: 320px) {
  .supercharged {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    /* Keeping max at 2rem for very small screens */
  }
}

/* Update tablet size */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .supercharged {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    /* Changed max from 2rem to 2.5rem */
  }
}

/* Add smooth gradient hover effect to cards */
.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 255, 0.95));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(62, 99, 221, 0.1), rgba(92, 126, 229, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

/* Add floating animation to images with parallax effect */
.supercharged-image,
.principles-image {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.supercharged-image:hover {
  transform: translateY(-10px) translateZ(20px) rotateX(2deg);
  filter: drop-shadow(0 10px 20px rgba(62, 99, 221, 0.2));
}

/* Add glowing effect to highlighted text */
.super-highlight,
.accelerate-highlight,
.rigor-highlight {
  position: relative;
  transition: all 0.3s ease;
}

/* Style for the highlight effect on hover */
.super-highlight:hover,
.accelerate-highlight:hover,
.rigor-highlight:hover {
  background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(62, 99, 221, 0.1) 50%);
  background-size: 200% 100%;
  background-position: -100% 0;
}

/* Add smooth scroll reveal animations */
.responsive-super-grid {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.responsive-super-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add text reveal animation for headers */
.features-header,
.principles-header {
  position: relative;
  overflow: hidden;
}

.features-header::before,
.principles-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Add the pulse animation keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(62, 99, 221, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(62, 99, 221, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(62, 99, 221, 0.3);
  }
}

/* Professional copyright footer styling */
.copyright-footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: 5rem;
  background: linear-gradient(to bottom, #F8F9FF, #FFFFFF);
  /* Subtle gradient */
  border-top: 1px solid rgba(62, 99, 221, 0.06);
  /* Even more subtle border */
  position: relative;
}

/* Add subtle separator line */
.copyright-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  /* Centered line */
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(62, 99, 221, 0.08),
      transparent);
}

.copyright-text {
  font-family: "Rethink Sans-Bold", Helvetica;
  font-size: 0.85rem;
  color: #4B5563;
  /* Slightly darker for better contrast */
  letter-spacing: 0.03em;
  font-weight: 400;
  opacity: 1;
  transition: all 0.3s ease;
  max-width: 600px;
  /* Prevent text from getting too wide */
  margin: 0 auto;
  padding: 0 1.5rem;
  line-height: 1.6;
}

.copyright-text:hover {
  color: #3E63DD;
}

/* Mobile adjustments for copyright */
@media screen and (max-width: 768px) {
  .copyright-footer {
    padding: 1.5rem 0;
    margin-top: 4rem;
  }

  .copyright-footer::before {
    width: 60px;
    /* Smaller line on mobile */
  }

  .copyright-text {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
}


/* Update navbar styling */
.nav {
  height: 80px;
  /* Increased from default height */
  padding: 1rem 1.5rem !important;
  background: white;
  margin: 0;
  /* Remove any margin */
  position: relative;
  top: 0;
  /* Ensure it starts from the very top */
  /* width: 100%; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Remove any top margin from body */
body {
  margin: 0;
  padding: 0;
  /* Remove default margin */
  padding-top: 0;
  overflow-x: hidden;
  /* Remove any top padding */
  background: #F8F9FF;
  width: 100%;
}

/* Adjust the main content padding */
.content {
  padding-top: 2rem;
  /* Add some space below the navbar */
}