* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
*:focus,
*:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
a,
button,
input,
select,
textarea {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}
:root {
  --bg: #ffffff;
  --bg-secondary: #f9f9f9;
  --fg: #000000;
  --border: #ffffff;
  --border-secondary: #444;
  --muted: #666666;
  --accent: #444;
  --accent-1: #444;
  --accent-2: #444;
  --maxw: 1200px;
  --gutter: clamp(16px, 5vw, 40px);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000;
    --bg-secondary: #121212;
    --fg: #ffffff;
    --border: #000000;
    --border-secondary: #333;
    --muted: #999999;
    --accent: #ffffff;
    --accent-1: #ffffff;
    --accent-2: #ffffff;
  }
}

:root.dark-theme {
  --bg: #000;
  --bg-secondary: #121212;
  --fg: #ffffff;
  --border: #000000;
  --border-secondary: #333;
  --muted: #999999;
  --accent: #ffffff;
  --accent-1: #ffffff;
  --accent-2: #ffffff;
}

:root.light-theme {
  --bg: #ffffff;
  --bg-secondary: #f9f9f9;
  --fg: #000000;
  --border: #ffffff;
  --border-secondary: #444;
  --muted: #666666;
  --accent: #444;
  --accent-1: #444;
  --accent-2: #444;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--fg);
  background: var(--bg-secondary);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

header {
  position: relative;
  background: var(--bg-secondary);
  border-bottom: 1rem solid var(--border);
  z-index: 1000;
  padding: 16px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0rem;
  text-decoration: none;
  cursor: pointer;
  z-index: 1001;
  color: var(--accent);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 200;
  font-size: clamp(20px, 5vw, 24px);
}

.brand svg {
  width: clamp(40px, 6vw, 64px);
  height: auto;
  stroke: var(--accent);
  fill: none;
  transition: transform 0.3s ease, stroke 0.3s ease;
}
.links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.links a {
  font-size: clamp(13px, 3vw, 14px);
  font-weight: 200;
  letter-spacing: 0.01em;
  position: relative;
  transition: all 0.3s ease;
  color: var(--fg);
}

.links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  max-width: fit-content;
  background: var(--accent);
  color: var(--bg);
  font-weight: 200;
  font-size: clamp(13px, 3vw, 14px);
  cursor: pointer;
  border: 0px solid var(--accent);
  font-family: "Inter", system-ui, sans-serif;
  transition: all 0.3s ease;
  border-radius: 0px 20px 0px 20px;
}

.btn.secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--accent);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.burger-line {
  display: block;
  background: var(--accent);
  height: 1px;
  width: 48px;
  margin: 10px 0;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  width: 24px;
  height: 1px;
}

.burger.active .burger-line:nth-child(2) {
  transform: rotate(-45deg) translate(4px, -4px);
  width: 24px;
  height: 1px;
}
@media (max-width: 768px) {
  #primary-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 0rem solid var(--border);
    flex-direction: column;
    padding: 24px var(--gutter);
    gap: 16px;
    display: none;
    z-index: 999;
  }

  #primary-nav.active {
    display: flex;
    font-size: 2rem;
  }

  .burger {
    display: block;
  }

  .links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
  min-height: 75vh;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-direction: column;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(32px, 8vw, 64px);
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-weight: 200;
}

.hero h1 span {
  display: inline;
  color: var(--muted);
}

.hero p {
  color: var(--muted);
  font-size: clamp(14px, 3.5vw, 16px);
  max-width: 700px;
  margin: 0 0 32px;
  line-height: 1.6;
  font-weight: 200;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  background: var(--bg-secondary) important!;
  border-bottom: 1rem solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

section.alt-bg {
  background: transparent;
  border-left: none;
  border-right: none;
}

section h2 {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(28px, 6vw, 48px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-weight: 200;
  position: relative;
}

section p.lead {
  font-size: clamp(14px, 3.5vw, 15px);
  color: var(--muted);
  max-width: 900px;
  line-height: 1.7;
  margin-top: 32px;
  font-weight: 200;
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

@media (max-width: 600px) {
  .grid.cols-3,
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg);
  border: 0px solid var(--border-secondary);
  padding: clamp(24px, 4vw, 32px);
  position: relative;
  transition: all 0.3s ease;
  border-radius: 0px 20px 0px 20px;
}

.card h3 {
  margin: 0 0 12px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(15px, 3.5vw, 16px);
  color: var(--fg);
  font-weight: 200;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 3vw, 14px);
  line-height: 1.6;
  font-weight: 200;
}

.stats-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat {
  background: var(--bg);
  border: 0px solid var(--border-secondary);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 0px 20px 0px 20px;
}

.stat .number {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 200;
  margin: 0 0 8px;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(12px, 3vw, 13px);
  line-height: 1.4;
  font-weight: 200;
}

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

.market-item {
  background: var(--bg);
  border: 0px solid var(--border-secondary);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 0px 20px 0px 20px;
}

.market-item .left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.market-item .symbol {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 200;
  font-size: clamp(15px, 3vw, 16px);
  color: var(--fg);
}

.market-item .name {
  color: var(--muted);
  font-size: clamp(12px, 2.8vw, 13px);
}

.market-item .right {
  text-align: right;
}

.market-item .price {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 200;
  font-size: clamp(16px, 3.5vw, 18px);
  color: var(--fg);
}

.market-item .change {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(12px, 3vw, 13px);
  font-weight: 200;
  margin-top: 4px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

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

.chart-container {
  background: transparent;
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 32px);
  margin-top: 40px;
  position: relative;
}

.chart-wrapper {
  position: relative;
  height: 300px;
  margin-top: 20px;
}

canvas {
  max-width: 100%;
}

.footer {
  background: var(--bg-secondary);
  color: var(--muted);
  padding: clamp(60px, 10vw, 80px) 0 clamp(40px, 6vw, 60px);
  border-top: 1rem solid var(--border);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  position: relative;
  z-index: 10;
}

.footer .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(40px, 6vw, 56px);
  align-items: start;
}

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

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

.footer-brand .brand-footer {
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 200;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footer-brand .tagline {
  font-size: clamp(15px, 3.5vw, 17px);
  font-weight: 200;
  color: var(--accent);
  margin: 16px 0 12px;
  line-height: 1.4;
}

.footer-brand .mission {
  font-size: clamp(13px, 3vw, 14px);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 90%;
}

/* Section Headers */
.footer-links h4,
.footer-involved h4,
.footer-contact h4 {
  font-size: clamp(15px, 3.5vw, 16px);
  font-weight: 200;
  color: var(--fg);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 8px;
}

/* Links List */
.footer-links ul,
.footer-involved ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-involved li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-involved a {
  color: var(--muted);
  font-size: clamp(13px, 3vw, 14px);
  font-weight: 200;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

/* Contact Column */
.footer-contact p {
  margin: 8px 0;
  font-size: clamp(13px, 3vw, 14px);
  line-height: 1.6;
}

.footer-contact a {
  text-decoration: none;
  position: relative;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 0px solid var(--border-secondary);
  padding-top: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: left;
  font-size: clamp(11px, 2.5vw, 12px);
  color: var(--muted);
}

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

.footer-legal p {
  margin: 0;
  line-height: 1.5;
}

.footer-legal strong {
  color: var(--fg);
}

.privacy-note {
  margin-top: 8px;
  font-size: 90%;
  line-height: 1.5;
  opacity: 0.8;
}

#contact .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

#partners .cta-buttons {
  display: flex;
  justify-content: left;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

@media (max-width: 480px) {
  #contact .cta-buttons {
    flex-direction: row;
  }

  #contact .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  section {
    padding: clamp(40px, 6vw, 60px) 0;
  }

  section h2::after {
    width: 50px;
  }
}

.loading {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

.market-subheader {
  font-weight: 200;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(18px, 4vw, 20px);
  margin-top: 40px;
  margin-bottom: 20px;
}

.team-section {
  margin-top: 48px;
}

.team-section h3 {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(18px, 4vw, 22px);
  margin-bottom: 28px;
  color: var(--fg);
  font-weight: 200;
  letter-spacing: -0.01em;
}

.team-card {
  background: var(--bg);
  border: 0px solid var(--border-secondary);
  padding: clamp(24px, 4vw, 32px);
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0px 20px 0px 20px;
}

.team-header {
  margin-bottom: 16px;
}

.team-header h4 {
  margin: 0 0 6px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(15px, 3.5vw, 16px);
  color: var(--fg);
  font-weight: 200;
  letter-spacing: -0.01em;
}

.team-role {
  margin: 0;
  color: var(--accent);
  font-size: clamp(12px, 3vw, 13px);
  font-weight: 200;
  letter-spacing: 0.05em;
}

.team-bio {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(13px, 3vw, 14px);
  line-height: 1.6;
}

.team-link {
  display: inline-block;
  color: var(--accent);
  font-size: clamp(12px, 3vw, 13px);
  font-weight: 200;
  transition: all 0.3s ease;
  position: relative;
}

.team-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.team-description {
  color: var(--muted);
  font-size: clamp(13px, 3vw, 14px);
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-card-full {
  background: var(--bg);
  border: 0px solid var(--border-secondary);
  padding: clamp(24px, 4vw, 32px);
  transition: all 0.3s ease;
  border-radius: 0px 20px 0px 20px;
}

.team-card-full p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(13px, 3vw, 14px);
  line-height: 1.6;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

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

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

.opportunity-card {
  background: var(--bg);
  border: 0px solid var(--border-secondary);
  padding: clamp(24px, 4vw, 32px);
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0px 20px 0px 20px;
}

.opportunity-type {
  display: inline-block;
  font-size: clamp(10px, 2.5vw, 11px);
  font-weight: 200;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 0px 20px 0px 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.opportunity-type.student {
  background: var(--bg-secondary);
  color: var(--accent);
  border: px solid var(--accent);
}

.opportunity-type.coordination {
  background: var(--bg-secondary);
  color: var(--accent-2);
  border: 0px solid var(--accent-2);
}

.opportunity-type.internship {
  background: var(--bg-secondary);
  color: var(--accent-1);
  border: 0px solid var(--accent-1);
}

.opportunity-card h3 {
  margin: 0 0 12px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(15px, 3.5vw, 16px);
  color: var(--fg);
  font-weight: 200;
  letter-spacing: -0.01em;
}

.opportunity-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(13px, 3vw, 14px);
  line-height: 1.6;
}

.btn-small {
  padding: 0.5rem 1.5rem;
  background: transparent;
  color: var(--accent);
  font-weight: 200;
  font-size: clamp(12px, 3vw, 13px);
  cursor: pointer;
  border: 1px solid var(--accent);
  font-family: "Inter", system-ui, sans-serif;
  transition: all 0.3s ease;
  border-radius: 0px 20px 0px 20px;
  display: inline-block;
  text-decoration: none;
}

.opportunity-full {
  background: var(--bg);
  border: 0px solid var(--border-secondary);
  padding: clamp(24px, 4vw, 32px);
  margin-top: 28px;
  text-align: left;
  border-radius: 0px 20px 0px 20px;
}

.opportunity-full h3 {
  margin: 0 0 12px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(16px, 4vw, 18px);
  color: var(--fg);
  font-weight: 200;
}

.opportunity-full p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 3vw, 14px);
  line-height: 1.6;
}

.mentorship-section {
  background: var(--bg);
  border: 0px solid var(--border-secondary);
  padding: clamp(24px, 4vw, 32px);
  margin-top: 40px;
  text-align: left;
  border-radius: 0px 20px 0px 20px;
}

.mentorship-section h3 {
  margin: 0 0 12px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(16px, 4vw, 18px);
  color: var(--fg);
  font-weight: 200;
}

.mentorship-section p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(13px, 3vw, 14px);
  line-height: 1.6;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

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

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

.resource-category {
  background: var(--bg);
  border: 0px solid var(--border-secondary);
  padding: clamp(24px, 4vw, 32px);
  border-radius: 0px 20px 0px 20px;
}

.resource-category h3 {
  margin: 0 0 20px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(15px, 3.5vw, 16px);
  color: var(--fg);
  font-weight: 200;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-item {
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 0px solid var(--border-secondary);
  color: var(--muted);
  font-size: clamp(13px, 3vw, 14px);
  font-weight: 200;
  transition: all 0.2s ease;
  border-radius: 0px 20px 0px 20px;
}

.resource-cta {
  background: var(--bg);
  border: 0px solid var(--border-secondary);
  padding: clamp(24px, 4vw, 32px);
  margin-top: 32px;
  text-align: left;
  border-radius: 0px 20px 0px 20px;
}

.resource-cta p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(13px, 3vw, 14px);
  line-height: 1.6;
}

.theme-btn {
  padding: 0.5rem 1.5rem;
  font-size: clamp(12px, 2.5vw, 13px);
  position: relative;
  overflow: hidden;
  border-radius: 0px 20px 0px 20px;
}

.theme-icon-sun,
.theme-icon-moon {
  font-size: 1.1em;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon-moon {
  opacity: 0;
  transform: translateY(10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.theme-icon-sun {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
