@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --background-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --background-1-solid: #f0f4ff;
  --background-1-transparent: rgba(240, 244, 255, 0.95);
  --background-2: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  --background-2-solid: #ffffff;
  --background-3: linear-gradient(135deg, #e8f0fe 0%, #f3e7ff 100%);
  --background-3-solid: #e8f0fe;
  --background-4: linear-gradient(135deg, #dce7ff 0%, #e6d7ff 100%);

  --foreground-1: #2d3748;
  --foreground-2: #4a5568;

  --accent-1: #ff6b6b;
  --accent-2: #4ecdc4;
  --accent-3: #45b7d1;

  --cultural-orange: #ffa726;
  --cultural-red: #ef5350;
  --cultural-blue: #5c6bc0;
  --cultural-purple: #ab47bc;
  --cultural-green: #66bb6a;
  --cultural-teal: #26a69a;
}

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

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--background-1);
  background-attachment: fixed;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--foreground-1);
  min-height: 100vh;
}

h1 {
  font-size: 48px;
  line-height: 150%;
  font-weight: 600;
}

h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

h4 {
  font-size: 20px;
  line-height: 28px;
  color: var(--foreground-2);
  font-weight: 400;
}

p {
  color: var(--foreground-2);
  font-size: 16px;
  line-height: 150%;
}

a {
  color: var(--foreground-1);
  font-weight: medium;
  transition: 120ms ease-out;
  text-decoration: none;
}

a:hover {
  color: var(--accent-3) !important;
}

button {
  font-family: 'IBM Plex Sans', sans-serif;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  color: var(--foreground-1);
  cursor: pointer;
  position: relative;
  top: 0;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

button::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent-2), var(--cultural-purple));
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  z-index: -1;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

button.cta {
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--cultural-orange) 50%, var(--cultural-purple) 100%);
  color: white;
  font-weight: 600;
  border: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

button.cta::before {
  display: none;
}

button.cta:hover {
  background: linear-gradient(135deg, var(--cultural-orange) 0%, var(--accent-1) 50%, var(--cultural-blue) 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.3);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 12px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 128px;
}

nav {
  display: flex;
  justify-content: center;
  padding: 16px 16px;
  width: 100%;
  position: sticky;
  top: 0;
  background: var(--background-1-transparent);
  backdrop-filter: blur(20px);
  z-index: 2;
  border-bottom: 1px solid var(--background-3);
}

.nav-inner {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

nav .left,
nav .right {
  display: flex;
  gap: 16px;
  align-items: center;
}

nav .left .logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 8px;
}

nav .nav-inner .left a img.logo {
  transition: all 0.3s ease;
  cursor: pointer;
}

nav .nav-inner .left a img.logo:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

footer .inner .column .logo {
  transition: all 0.3s ease;
  cursor: pointer;
}

footer .inner .column .logo:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

nav .left .name {
  color: var(--foreground-1);
  font-weight: 600;
  font-size: 24px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 32px 16px;
  background: var(--background-2-solid);
  border-radius: 24px;
  margin: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero .header-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  max-width: 700px;
}

.features .grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.features .tile {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #fff0f8 100%);
  border-radius: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.features .tile::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--cultural-purple));
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  z-index: -1;
}

.features .tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
}

.features .row .tile.small {
  width: 50%;
  flex-direction: column;
}

.features .row {
  display: flex;
  gap: 32px;
}

.features .tile .text {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.features .row .tile.small .text {
  flex: revert;
}

.features .tile .media {
  background: var(--background-3);
  position: relative;
}

.music-visual {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 30%, #ab47bc 70%, #5c6bc0 100%);
  animation: colorShift 6s ease-in-out infinite;
}

.poetry-visual {
  background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 30%, #66bb6a 70%, #26a69a 100%);
  animation: colorShift 8s ease-in-out infinite reverse;
}

.philosophy-visual {
  background: linear-gradient(135deg, #ef5350 0%, #ab47bc 30%, #5c6bc0 70%, #4ecdc4 100%);
  animation: colorShift 7s ease-in-out infinite;
}

@keyframes colorShift {
  0%, 100% {
    filter: hue-rotate(0deg) brightness(1);
  }
  25% {
    filter: hue-rotate(10deg) brightness(1.1);
  }
  50% {
    filter: hue-rotate(-10deg) brightness(0.9);
  }
  75% {
    filter: hue-rotate(5deg) brightness(1.05);
  }
}

.features .grid .tile.large .media {
  width: 600px;
  height: 400px;
  border-top-left-radius: 32px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.content-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.content-image:hover {
  opacity: 1;
}

.content-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--background-3), var(--background-4));
  color: var(--foreground-2);
  font-size: 24px;
  font-weight: 600;
  border-radius: 16px;
  opacity: 0.8;
}

.features .row .tile.small .media {
  width: calc(100% - 64px);
  flex: 1;
  border-radius: 32px 32px 0 0;
}

/* Impact Section */
.impact-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 32px;
  padding: 64px 32px;
  width: 100%;
  color: white;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%), 
              linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
              linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%), 
              linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.3;
  z-index: 1;
}

.impact-section > * {
  position: relative;
  z-index: 2;
}

.impact-section h2 {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  width: 100%;
}

.impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.impact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.audio-icon {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
}

.visual-icon {
  background: linear-gradient(135deg, var(--cultural-blue), var(--accent-3));
}

.distribution-icon {
  background: linear-gradient(135deg, var(--cultural-orange), var(--accent-2));
}

.language-icon {
  background: linear-gradient(135deg, var(--cultural-red), var(--accent-1));
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #d299c2 100%);
  border-radius: 32px;
  padding: 64px 32px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

.team-section > * {
  position: relative;
  z-index: 2;
}

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

.team-section p {
  max-width: 600px;
  margin: 0 auto 48px auto;
  color: var(--foreground-2);
  font-size: 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  width: 100%;
  margin-bottom: 48px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: var(--background-3);
  border-radius: 16px;
  transition: all 120ms ease-out;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 10%);
}

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
}

.scholar-avatar {
  background: linear-gradient(135deg, var(--cultural-blue), var(--accent-1));
}

.musician-avatar {
  background: linear-gradient(135deg, var(--cultural-orange), var(--accent-2));
}

.composer-avatar {
  background: linear-gradient(135deg, var(--cultural-red), var(--accent-3));
}

.producer-avatar {
  background: linear-gradient(135deg, var(--accent-1), var(--cultural-orange));
}

.team-member h3 {
  color: var(--foreground-1);
  margin-bottom: 8px;
  font-size: 20px;
}

.member-role {
  color: var(--accent-1);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.member-description {
  color: var(--foreground-2);
  font-size: 14px;
  line-height: 1.5;
}

.team-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: var(--background-4);
  border-radius: 16px;
  border: 2px dashed var(--accent-1);
}

.team-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--background-3);
  border-radius: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.team-preview p {
  color: var(--foreground-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.team-cta p {
  color: var(--foreground-1);
  font-weight: 500;
  margin: 0;
  font-size: 18px;
}

/* Bhaja Govindam Page Styles */
.bhaja-govindam-page {
  max-width: 1000px;
  margin: 0 auto;
}

.bhaja-govindam-header {
  text-align: center;
  margin-bottom: 32px;
}

.bhaja-govindam-header h1 {
  color: var(--accent-1);
  margin-bottom: 16px;
  font-size: 48px;
}

.bhaja-govindam-header h2 {
  color: var(--foreground-2);
  font-size: 20px;
  font-weight: 400;
}

.bhaja-govindam-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.artwork-section {
  display: flex;
  justify-content: center;
}

.bhaja-govindam-artwork {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.description-section p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground-2);
  text-align: center;
}

.promo-videos-section {
  text-align: center;
}

.promo-videos-section h3 {
  color: var(--accent-1);
  margin-bottom: 24px;
  font-size: 24px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-item h4 {
  color: var(--foreground-1);
  font-size: 18px;
  margin: 0;
}

.promo-video {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scholar-link-section {
  text-align: center;
  padding: 24px;
  background: var(--background-3);
  border-radius: 16px;
}

.home-link-container {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

/* Bhaja Govindam page styles */
.bhaja-govindam-page {
  padding: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.bhaja-govindam-header {
  text-align: center;
  margin-bottom: 48px;
}

.bhaja-govindam-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--accent-1);
}

.bhaja-govindam-header h2 {
  font-size: 24px;
  color: var(--foreground-2);
  font-weight: 400;
}

.bhaja-govindam-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.artwork-section {
  text-align: center;
}

.bhaja-govindam-artwork {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.description-section {
  max-width: 800px;
  text-align: center;
}

.description-section p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--foreground-2);
}

.promo-videos-section {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.promo-videos-section h3 {
  margin-bottom: 24px;
  font-size: 28px;
  color: var(--accent-1);
}

.video-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.promo-video {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.streaming-platforms-section {
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin: 32px 0;
}

.streaming-platforms-section h3 {
  margin-bottom: 24px;
  font-size: 28px;
  color: var(--accent-1);
}

.streaming-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
}

.streaming-links .platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--background-3);
  border-radius: 16px;
  transition: all 120ms ease-out;
  text-decoration: none;
  color: var(--foreground-1);
  min-width: 120px;
}

.streaming-links .platform-link:hover {
  background: var(--background-4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.streaming-links .platform-icon-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.streaming-links .platform-link span {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.scholar-link-section {
  text-align: center;
  max-width: 600px;
}

.home-link-container {
  text-align: center;
}

@media (max-width: 768px) {
  .bhaja-govindam-page {
    padding: 16px;
  }
  
  .bhaja-govindam-header h1 {
    font-size: 36px;
  }
  
  .bhaja-govindam-header h2 {
    font-size: 20px;
  }
  
  .promo-videos-section h3 {
    font-size: 24px;
  }
  
  .streaming-platforms-section h3 {
    font-size: 22px;
  }
  
  .streaming-links {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
  }
  
  .streaming-links .platform-link {
    padding: 16px 12px;
    min-width: 100px;
  }
  
  .streaming-links .platform-icon-img {
    width: 40px;
    height: 40px;
  }
  
  .streaming-links .platform-link span {
    font-size: 12px;
  }
  
  .promo-video {
    max-width: 100%;
  }
  
  .bhaja-govindam-content {
    gap: 32px;
  }
  
  .description-section p {
    font-size: 16px;
  }
}

/* Platforms Section */
.platforms-section {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ff9a9e 100%);
  border-radius: 32px;
  padding: 64px 32px;
  width: 100%;
  position: relative;
}

.platforms-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 200, 255, 0.3) 0%, transparent 50%);
  border-radius: inherit;
  z-index: 1;
}

.platforms-section > * {
  position: relative;
  z-index: 2;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  width: 100%;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--background-3);
  border-radius: 16px;
  transition: all 120ms ease-out;
  text-decoration: none;
  color: var(--foreground-1);
}

.platform-link:hover {
  background: var(--background-4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgb(2 2 3 / 32%);
}

.platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--accent-1);
}

.platform-icon-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.launching-title {
  background: linear-gradient(45deg, #ff6b6b, #ffa726, #ab47bc, #5c6bc0, #4ecdc4);
  background-size: 300% 300%;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  border-radius: 25px;
  margin-bottom: 16px;
  display: inline-block;
  animation: rainbowShift 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.launching-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 2s infinite;
}

@keyframes rainbowShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.platform-link.spotify .platform-icon {
  background: #1DB954;
}

.platform-link.apple-music .platform-icon {
  background: #FA243C;
}

.platform-link.amazon-music .platform-icon {
  background: #FF9900;
}

.platform-link.audible .platform-icon {
  background: #F56500;
}

.platform-link.apple-books .platform-icon {
  background: #007AFF;
}

/* Partnership Details */
.partnership-details {
  background: var(--background-2);
  border-radius: 32px;
  padding: 64px 32px;
  width: 100%;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  width: 100%;
}

.partnership-item {
  padding: 24px;
  background: var(--background-3);
  border-radius: 16px;
  border-left: 4px solid var(--accent-1);
}

.partnership-item h3 {
  color: var(--accent-2);
  margin-bottom: 12px;
}

.call-to-action .callout-container {
  width: 100%;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--background-2), var(--background-3));
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--accent-1);
}

.call-to-action .callout-container .text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  max-width: 500px;
}

.call-to-action .callout-container .buttons button:not(.cta) {
  background: var(--background-3);
}

.call-to-action .callout-container .buttons button:not(.cta):hover {
  background: var(--background-4);
}

footer {
  background: var(--background-3);
  padding: 64px 16px 0 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--background-4);
}

.copyright {
  background: var(--background-3);
  padding: 24px 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--background-4);
}

footer .inner {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

footer .inner .column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer .inner .column .logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

footer .inner .column .name {
  color: var(--foreground-1);
  font-weight: 600;
  font-size: 20px;
}

footer .inner .column a {
  color: var(--foreground-2);
}

footer .column p {
  color: var(--foreground-1);
  font-weight: 600;
}

.copyright {
  background: var(--background-3);
  padding: 24px 16px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.copyright .inner {
  max-width: 1200px;
  width: 100%;
  text-align: left;
  border-top: 1px solid var(--background-4);
  padding-top: 24px;
}

.copyright p {
  color: var(--foreground-2);
  font-size: 14px;
  font-weight: 400;
}

/* Scholar Link */
.scholar-link {
  color: var(--accent-1) !important;
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-color: var(--accent-2);
  transition: all 120ms ease-out;
}

.scholar-link:hover {
  color: var(--accent-2) !important;
  text-decoration-color: var(--accent-1);
}

/* Scholar Page Styles */
.scholar-page {
  max-width: 800px;
  padding: 32px 16px;
}

.scholar-header {
  text-align: center;
  margin-bottom: 48px;
}

.scholar-header h1 {
  color: var(--accent-1);
  margin-bottom: 16px;
}

.scholar-header h2 {
  color: var(--foreground-2);
  font-weight: 500;
  font-size: 24px;
}

.scholar-content-page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.scholar-section {
  background: var(--background-2);
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid var(--accent-1);
  box-shadow: 0 4px 12px rgb(0 0 0 / 5%);
}

.scholar-section h3 {
  color: var(--accent-1);
  margin-bottom: 16px;
}

.scholar-section p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.scholar-section p:last-child {
  margin-bottom: 0;
}

.home-link-container {
  text-align: center;
  padding: 32px 0;
}

/* Contact link styles */
.contact-info {
  color: var(--accent-1);
  font-weight: 500;
  text-decoration: underline;
}

/* Contributor Preview Styles */
.contributor-preview {
  background: var(--background-2);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--background-3);
  margin-bottom: 32px;
}

.contributor-profile {
  display: flex;
  gap: 24px;
  align-items: center;
}

.contributor-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--background-3), var(--background-4));
  border: 3px solid var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.photo-icon {
  font-size: 32px;
  opacity: 0.6;
}

.contributor-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contributor-info h3 {
  color: var(--foreground-1);
  margin: 0;
  font-size: 24px;
}

.contributor-role {
  color: var(--accent-1);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.contributor-description {
  color: var(--foreground-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .contributor-profile {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .contributor-photo-placeholder {
    width: 100px;
    height: 100px;
  }
  
  .photo-icon {
    font-size: 28px;
  }
  
  .contributor-preview {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .contributor-photo-placeholder {
    width: 80px;
    height: 80px;
  }
  
  .photo-icon {
    font-size: 24px;
  }
  
  .contributor-info h3 {
    font-size: 20px;
  }
  
  .contributor-role {
    font-size: 14px;
  }
  
  .contributor-description {
    font-size: 14px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features .grid .tile.large .media {
    width: 400px;
    height: 300px;
  }
  
  .platforms-grid,
  .impact-grid,
  .partnership-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 12px 16px;
  }

  .nav-top {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .nav-bottom {
    gap: 16px;
  }

  .nav-inner .left .name {
    font-size: 20px;
  }

  nav .left .logo {
    width: 80px;
    height: 80px;
  }

  main {
    gap: 64px;
  }

  section {
    padding: 0 20px;
  }

  h1 {
    font-size: 32px;
    line-height: 120%;
  }

  h2 {
    font-size: 28px;
    line-height: 32px;
  }

  h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .features .grid .tile.large {
    flex-direction: column;
    height: auto;
    min-height: 400px;
  }

  .features .grid .tile.large .media {
    width: 100%;
    height: 250px;
    border-radius: 0 0 32px 32px;
  }

  .features .row {
    flex-direction: column;
  }

  .features .row .tile.small {
    width: 100%;
    height: 300px;
  }

  .features .row .tile.small .media {
    width: calc(100% - 64px);
    height: 120px;
  }

  .platforms-grid,
  .impact-grid,
  .partnership-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .team-section {
    padding: 32px 20px;
  }
  
  .team-member {
    padding: 20px;
  }
  
  .team-cta {
    padding: 24px;
  }

  .platform-link {
    padding: 20px;
  }

  .impact-section,
  .platforms-section,
  .partnership-details {
    padding: 32px 20px;
  }

  .call-to-action .callout-container {
    padding: 32px 20px;
  }

  .buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .buttons button,
  .buttons a {
    width: 100%;
    text-align: center;
  }

  footer {
    padding: 32px 16px 0 16px;
  }

  footer .inner {
    flex-direction: column;
    gap: 24px;
  }

  .copyright {
    padding: 16px 16px;
  }

  .scholar-page {
    padding: 16px;
  }

  .scholar-header {
    margin-bottom: 32px;
  }

  .scholar-header h1 {
    font-size: 28px;
    line-height: 120%;
  }

  .scholar-header h2 {
    font-size: 20px;
    line-height: 120%;
  }

  .scholar-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .nav-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .nav-bottom a {
    font-size: 14px;
  }

  nav .left .logo {
    width: 72px;
    height: 72px;
  }

  nav .left .name {
    font-size: 18px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .features .grid .tile.large .media {
    height: 200px;
  }

  .platform-link {
    padding: 16px;
  }

  .platform-icon {
    width: 40px;
    height: 40px;
  }

  .impact-section,
  .platforms-section,
  .partnership-details,
  .team-section {
    padding: 24px 16px;
  }

  .call-to-action .callout-container {
    padding: 24px 16px;
  }

  .scholar-section {
    padding: 16px;
  }

  .scholar-header h1 {
    font-size: 24px;
  }

  .scholar-header h2 {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .nav-inner .left .logo {
    width: 64px;
    height: 64px;
  }

  footer .inner .column .logo {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 24px;
  }

  button {
    padding: 10px 16px;
    font-size: 14px;
  }

  .features .grid .tile.large .media {
    height: 180px;
  }
}

/* Contact Form Styles */
.contact-page {
  max-width: 1200px;
  width: 100%;
  padding: 32px 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header h1 {
  color: var(--accent-1);
  margin-bottom: 16px;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--background-2);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--background-3);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--foreground-1);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--background-3);
  border-radius: 8px;
  background: var(--background-1);
  color: var(--foreground-1);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  transition: border-color 120ms ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group button {
  width: 100%;
}

.contact-info {
  background: var(--background-2);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--background-3);
  height: fit-content;
}

.contact-info h3 {
  color: var(--accent-1);
  margin-bottom: 16px;
}

.contact-methods {
  margin-top: 24px;
}

.contact-method {
  margin-bottom: 20px;
}

.contact-method h4 {
  color: var(--foreground-1);
  margin-bottom: 4px;
  font-size: 16px;
}

.contact-method p {
  color: var(--foreground-2);
  font-size: 14px;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #c3e6cb;
  margin-bottom: 24px;
  display: none;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #f5c6cb;
  margin-bottom: 24px;
  display: none;
}

@media (max-width: 768px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-form,
  .contact-info {
    padding: 24px;
  }
}