/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: white;
  color: #111827;
  line-height: 1.5;
}

/* Page Wrapper */
.page-wrapper {
  min-height: 100vh;
  background-color: white;
}

.banner-content {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f3f4f6;
  z-index: 40;
}

.nav-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

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

.nav-logo span {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: Figtree, sans-serif;
}

.support-btn {
  background-color: #111827;
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.support-btn:hover {
  background-color: #374151;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.lang-toggle {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 500;
}

.lang-option {
  cursor: pointer;
  transition: color 0.2s ease;
}

.lang-option.active {
  color: #111827;
  font-weight: 600;
}

.lang-separator {
  margin: 0 0.25rem;
}

/* Hero Section */
.hero {
  padding-top: 12rem;
  padding-bottom: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 8px;
}

.shape-1 {
  top: 8rem;
  right: 4rem;
  width: 220px;
  height: 110px;
  background: linear-gradient(to bottom, #5bcefa 0%, #38bdf8 15%, #38bdf8 85%, #2098c7 100%);
  opacity: 0.95;
  transform: rotate(12deg);
  animation: float1 6s ease-in-out infinite;
  border-radius: 10px;
}

.shape-1::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 28px;
  width: 36px;
  height: 20px;
  background: linear-gradient(to bottom, #5bcefa 0%, #38bdf8 100%);
  border-radius: 50% 50% 0 0;
  box-shadow: 
    54px 0 0 #38bdf8,
    108px 0 0 #38bdf8;
}

.shape-2 {
  top: 16rem;
  right: 18rem;
  width: 150px;
  height: 90px;
  background: linear-gradient(to bottom, #fde047 0%, #fbbf24 15%, #fbbf24 85%, #d9a520 100%);
  opacity: 0.95;
  transform: rotate(-6deg);
  animation: float2 6s ease-in-out infinite 1s;
  border-radius: 10px;
}

.shape-2::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 30px;
  width: 32px;
  height: 18px;
  background: linear-gradient(to bottom, #fde047 0%, #fbbf24 100%);
  border-radius: 50% 50% 0 0;
  box-shadow: 
    58px 0 0 #fbbf24;
}

.shape-3 {
  top: 24rem;
  right: 8rem;
  width: 90px;
  height: 90px;
  background: linear-gradient(to bottom, #ff6b7a 0%, #f43f5e 15%, #f43f5e 85%, #d1354f 100%);
  opacity: 0.9;
  border-radius: 10px;
  animation: float3 6s ease-in-out infinite 2s;
}

.shape-3::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 16px;
  background: linear-gradient(to bottom, #ff6b7a 0%, #f43f5e 100%);
  border-radius: 50% 50% 0 0;
}

@keyframes float1 {
  0%, 100% {
    transform: translateY(0) rotate(12deg);
  }
  50% {
    transform: translateY(-20px) rotate(12deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-15px) rotate(-6deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(0deg);
  }
}

.hero-container {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  max-width: 48rem;
  color: #111827;
}

.hero p {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 42rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

/* Section Styles */
.section-container {
  max-width: 72rem;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
}

/* Projects Section */
.projects {
  padding: 6rem 1.5rem;
  background-color: #f9fafb;
}

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

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.project-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.project-card-accent {
  background-color: #fbbf24;
  border: none;
}

.project-card-accent p {
  color: #1f2937;
}

.project-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.accent-sky {
  background: linear-gradient(to right, #38bdf8, #0ea5e9);
}

.accent-rose {
  background: linear-gradient(to right, #fb7185, #f43f5e);
}

.project-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.project-card:hover .project-icon {
  transform: scale(1.1);
}

.icon-sky {
  background-color: #e0f2fe;
}

.icon-rose {
  background-color: #ffe4e6;
}

.icon-amber {
  background-color: #fcd34d;
}

.project-icon span {
  font-size: 1.875rem;
}

.project-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.project-title-row h3 {
  margin-bottom: 0;
}

.project-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.working-title {
  font-size: 0.75rem;
  background-color: #f3f4f6;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  color: #6b7280;
  font-weight: 500;
}

.project-card p {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.project-link {
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.project-card:hover .project-link {
  gap: 0.75rem;
}

/* Team Section */
.team {
  padding: 6rem 1.5rem;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

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

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.team-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

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

.team-avatar {
  position: relative;
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1.25rem;
}

.team-avatar img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover .team-avatar img {
  transform: scale(1.05);
}

.avatar-dot {
  position: absolute;
  bottom: -0.25rem;
  right: -0.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 4px solid white;
}

a.team-card {
  text-decoration: none;
  color: inherit;
}

.dot-sky {
  background-color: #38bdf8;
}

.dot-amber {
  background-color: #fbbf24;
}

.dot-rose {
  background-color: #f43f5e;
}

.team-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.25rem;
}

.team-role {
  color: #6b7280;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-bio {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.75;
}

/* Advisory Section */
.advisory {
  padding: 6rem 1.5rem;
  background-color: #f9fafb;
}

.advisory-info-box {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid #e5e7eb;
}

.info-title {
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.info-list {
  list-style: none;
  color: #4b5563;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.list-dash {
  color: #0ea5e9;
}

.info-note {
  color: #6b7280;
  font-style: italic;
  font-size: 0.875rem;
  margin-top: 1rem;
}

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

@media (max-width: 1024px) {
  .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.advisor-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.advisor-avatar {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.25rem;
}

.advisor-avatar img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.placeholder-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.bg-emerald {
  background-color: #34d399;
}

.advisor-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.25rem;
}

.advisor-domain {
  color: #6b7280;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.advisor-bio {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.75;
}

/* FAQ Section */
.faq {
  padding: 6rem 1.5rem;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

.faq-list {
  /* No additional styles needed */
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item.last {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.faq-item:hover h3 {
  color: #0ea5e9;
}

.faq-item p {
  color: #4b5563;
  line-height: 1.75;
}

/* Submit Section */
.submit {
  padding: 6rem 1.5rem;
  background: linear-gradient(to bottom right, #0ea5e9, #0284c7);
  color: white;
  position: relative;
  overflow: hidden;
}

.submit-shape {
  position: absolute;
}

.shape-rose {
  bottom: -5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  background-color: #f43f5e;
  border-radius: 1.5rem;
  transform: rotate(12deg);
  opacity: 0.3;
}

.shape-amber-circle {
  top: 2.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  background-color: #fbbf24;
  border-radius: 50%;
  opacity: 0.4;
}

.shape-white-square {
  bottom: 5rem;
  left: 33%;
  width: 5rem;
  height: 5rem;
  background-color: white;
  border-radius: 1rem;
  transform: rotate(45deg);
  opacity: 0.1;
}

.submit-container {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.submit-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bae6fd;
}

.submit h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.submit-desc {
  font-size: 1.25rem;
  color: #e0f2fe;
  margin-bottom: 1.5rem;
}

.submit-info-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.submit-list {
  list-style: none;
  color: #e0f2fe;
}

.submit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.list-dash.amber {
  color: #fcd34d;
}

.submit-btn {
  display: inline-block;
  background-color: white;
  color: #0284c7;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #f3f4f6;
  transform: translateY(-0.25rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
  background-color: #111827;
  color: white;
  padding: 3rem 1.5rem;
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-left {
  color: #9ca3af;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-left {
    text-align: left;
  }
}

.footer-title {
  font-weight: 500;
  color: white;
}

.footer-link {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #38bdf8;
}
