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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  color: #1e293b;
}

/* Scrolling Ticker Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  display: flex;
  animation: scroll 20s linear infinite;
  width: max-content;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 20px rgba(5, 150, 105, 0.5), 0 0 30px rgba(5, 150, 105, 0.3);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(5, 150, 105, 0.8), 0 0 40px rgba(5, 150, 105, 0.5), 0 0 50px rgba(5, 150, 105, 0.3);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

@media screen and (max-width: 768px) 
{
  .registration-form {
    width: 90vw;
  }
  .chart-container {
    width: 90vw;
  }
  .chart-stats {
    display: block !important;
  }

  #investmentChart {
    width: 75vw;
  }

}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* Blink Animation */
@keyframes blink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(5, 150, 105, 0.6), 0 0 40px rgba(5, 150, 105, 0.4);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 30px rgba(5, 150, 105, 0.8), 0 0 60px rgba(5, 150, 105, 0.6);
  }
}

.animate-blink {
  animation: blink 1.5s ease-in-out infinite;
}

/* Header */
.header {
  background-color: #1e293b;
  color: white;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
}

.header-content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, #94a3b8, #475569);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  border: 2px solid #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-title {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.025em;
}

/* Ticker */
.ticker {
  background-color: #334155;
  color: white;
  padding: 0.75rem 1.5rem;
  margin-top: 4rem;
  overflow: hidden;
}

.ticker-content {
  max-width: 80rem;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(to bottom right, #fffbeb, #ffedd5, #fef2f2);
  overflow: hidden;
}

.hero-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #1e293b;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: #334155;
}

.hero-paragraph {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 500;
}

.hero-highlight {
  font-size: 1rem;
  line-height: 1.75;
  border-left: 4px solid #cbd5e1;
  padding-left: 1rem;
}

.hero-cta {
  background-color: #1e293b;
  color: white;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-cta:hover {
  background-color: #000000;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .phone-mockup {
    transform: scale(1.1);
  }
}

.phone-container {
  position: relative;
  background-color: #000000;
  border-radius: 3rem;
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 340px;
  height: 690px;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 144px;
  height: 28px;
  background-color: #000000;
  border-radius: 0 0 1.5rem 1.5rem;
  z-index: 10;
}

.phone-screen {
  background: linear-gradient(to bottom right, #ccfbf1, #d1fae5, #cffafe);
  border-radius: 2.5rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Features Section */
.features-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom right, #d1fae5, #dcfce7, #ccfbf1);
}

.features-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid #d1fae5;
  transition: all 0.3s;
}

.feature-card:hover {
  background-color: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #d1fae5;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 1rem;
}

.feature-description {
  color: #334155;
  line-height: 1.75;
}

/* Registration Section */
.registration-section {
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom right, #fafaf9, #fffbeb, #ffedd5);
  overflow: hidden;
}

.registration-grid {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  z-index: 10;
}

@media (min-width: 1024px) {
  .registration-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.registration-form {
  background: linear-gradient(to bottom right, #475569, #334155);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 0;
  outline: none;
  color: #1e293b;
  font-weight: 500;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  ring: 4px;
  ring-color: #94a3b8;
}

.iti {
  width: 100%;

}

.phone-prefix {
  padding: 1rem;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-right: 1px solid #e2e8f0;
}

.phone-prefix-text {
  color: #334155;
  font-weight: 600;
}



.form-submit {
  width: 100%;
  background-color: #0f172a;
  color: white;
  padding: 1.25rem;
  border-radius: 0.75rem;
  font-weight: bold;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-submit:hover {
  background-color: #000000;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.form-notice {
  background-color: rgba(30, 41, 59, 0.5);
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: white;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  text-align: center;
}

/* Investment Chart */
.chart-container {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.chart-header {
  margin-bottom: 1.5rem;
}

.chart-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.chart-description {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.75;
}

.chart-canvas {
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.chart-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  border-radius: 0.75rem;
  padding: 1rem;
}

.stat-card.coal {
  background-color: #f8fafc;
}

.stat-card.uranium {
  background-color: #d1fae5;
}

.stat-card.lithium {
  background-color: #cffafe;
}

.stat-legend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stat-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.5s;
}

.stat-period {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.chart-summary {
  margin-top: 1.5rem;
  background: linear-gradient(to right, #d1fae5, #cffafe);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid #6ee7b7;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* How It Works Section */
.how-it-works-section {
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom right, #ffedd5, #fafaf9, #fffbeb);
  overflow: hidden;
}

.how-it-works-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  z-index: 10;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #475569;
  font-size: 1.125rem;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-8px);
}

.step-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-badge {
  display: inline-block;
  background-color: #f1f5f9;
  color: #334155;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
}

.step-description {
  color: #475569;
  line-height: 1.75;
  text-align: center;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom right, #f8fafc, #d1fae5, #cffafe);
  overflow: hidden;
}

.testimonials-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  z-index: 10;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #d1fae5;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(to bottom right, #10b981, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h3 {
  font-weight: bold;
  color: #1e293b;
  font-size: 1.125rem;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: #64748b;
}

.testimonial-stats {
  background: linear-gradient(to right, #d1fae5, #cffafe);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #6ee7b7;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.stat-row:last-child {
  margin-bottom: 0;
}

.growth-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #6ee7b7;
}

.testimonial-comment {
  background-color: #f8fafc;
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
}

.testimonial-comment p {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.75;
  font-style: italic;
}

.testimonials-cta {
  margin-top: 3rem;
  text-align: center;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(to right, #10b981, #06b6d4);
  border-radius: 1rem;
  padding: 0.25rem;
}

.cta-content {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1rem 2rem;
}

/* Bank Partners Section */
.banks-section {
  position: relative;
  padding: 4rem 1.5rem;
  background: linear-gradient(to bottom right, #fffbeb, #fafaf9, #ffedd5);
  overflow: hidden;
}

.banks-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  z-index: 10;
}

.banks-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: #1e293b;
}

.banks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .banks-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bank-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #334155;
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: white;
  padding: 2rem 1.5rem;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  color: #cbd5e1;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #10b981;
}

.footer-separator {
  color: #64748b;
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.popup-overlay.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.popup-container {
  position: relative;
  background-color: white;
  border-radius: 1rem;
  max-width: 50rem;
  width: 100%;
  margin: 2rem auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  color: #1e293b;
}

.pop-up-content-wrap {
  padding: 2.5rem;
  max-height: 80vh;
  overflow-y: auto;
}

.pop-up-content-wrap h2 {
  color: #1e293b;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.pop-up-content-wrap p {
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.pop-up-content-wrap strong {
  color: #1e293b;
  font-weight: 600;
}

.pop-up-content-wrap ul {
  margin: 1rem 0 1rem 1.5rem;
  color: #475569;
  line-height: 1.75;
}

.pop-up-content-wrap ul li {
  margin-bottom: 0.5rem;
}

.pop-up-content-wrap ul li p {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .popup-overlay {
    padding: 1rem 0.5rem;
  }

  .popup-container {
    margin: 1rem auto;
  }

  .pop-up-content-wrap {
    padding: 2rem 1.5rem;
  }

  .pop-up-content-wrap h2 {
    font-size: 1.5rem;
  }

  .popup-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}
