/* Cache bust: 1759864823 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.icon {
  stroke: currentColor;
  flex-shrink: 0;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1f1f1f;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo .icon {
  color: #f97316;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f97316;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  overflow: hidden;
}

.hero-small {
  min-height: 70vh;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(124, 45, 18, 0.2), #000, #000);
}

.bg-blur {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
}

.blur-1 {
  top: 25%;
  left: 25%;
  background: rgba(249, 115, 22, 0.1);
}

.blur-2 {
  bottom: 25%;
  right: 25%;
  background: rgba(249, 115, 22, 0.05);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-block;
  margin-bottom: 2rem;
}

.badge span {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 9999px;
  color: #f97316;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}

.highlight {
  color: #f97316;
}

.lead {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 3rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #f97316;
  color: #fff;
}

.btn-primary:hover {
  background: #ea580c;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #f97316;
}

.btn-secondary:hover {
  background: rgba(249, 115, 22, 0.2);
  border-color: #f97316;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  animation: bounce 2s infinite;
  color: #f97316;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Services Section */
.services {
  padding: 8rem 1.5rem;
  background: #000;
}

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

.card {
  background: linear-gradient(to bottom right, #1f1f1f, #000);
  border: 1px solid #262626;
  border-radius: 1.5rem;
  padding: 3rem 4rem;
  transition: all 0.5s ease;
}

.card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.1);
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #f97316;
}

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

h2 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.card-text {
  font-size: 1.25rem;
  color: #d1d5db;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.spacer {
  height: 3rem;
}

/* Features Section */
.features {
  padding: 1rem 1.5rem;
  background: #000;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(to bottom right, #1f1f1f, #000);
  border: 1px solid #262626;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.5s ease;
}

.feature-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  color: #f97316;
}

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

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #d1d5db;
  line-height: 1.75;
}

/* Programs Section */
.programs {
  padding: 6rem 1.5rem;
  background: #000;
}

.card-large {
  margin-bottom: 2rem;
}

.program-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #f97316;
  margin-bottom: 1.5rem;
}

.card-subtext {
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.75;
}

/* Profile Section */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.profile-avatar {
  width: 8rem;
  height: 8rem;
  background: linear-gradient(to bottom right, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.3);
  border: 4px solid rgba(249, 115, 22, 0.3);
  flex-shrink: 0;
}

.profile-info {
  flex: 1;
}

/* Story Section */
.story {
  padding: 1rem 1.5rem;
  background: #000;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-content p {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.75;
}

/* Conferences */
.conferences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.conference-item {
  background: rgba(31, 31, 31, 0.5);
  border: 1px solid #262626;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.conference-item:hover {
  border-color: rgba(249, 115, 22, 0.3);
}

.conference-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  color: #f97316;
}

.conference-item:hover .conference-icon {
  transform: scale(1.1);
}

.conference-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: #f97316;
}

/* Contact Section */
.contact-section {
  padding: 1rem 1.5rem;
  background: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.help-list {
  list-style: none;
  padding: 0;
}

.help-list li {
  font-size: 1.125rem;
  color: #d1d5db;
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.help-list li::before {
  content: "•";
  color: #f97316;
  font-size: 1.5rem;
  line-height: 1;
}

/* Footer */
footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid #1f1f1f;
  background: #000;
}

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

footer p {
  color: #9ca3af;
  font-size: 1.125rem;
}

footer a {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fb923c;
}

/* Responsive */
/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.mobile-menu-toggle span:first-child {
  transform: rotate(0);
}

.mobile-menu-toggle span:nth-child(2) {
  opacity: 1;
}

.mobile-menu-toggle span:nth-child(3) {
  transform: rotate(0);
}

/* Mobile menu open state */
.mobile-menu-open .mobile-menu-toggle span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 5;
  }

  .mobile-menu-open .nav-links {
    right: 0;
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.125rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .card {
    padding: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }
}

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

  .lead {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .profile-header {
    flex-direction: row;
    text-align: left;
  }
}

/* Avatar styles */
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-image: url('./avatar.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
  border: 3px solid #ff6b35;
}

/* Conference logos */
.conference-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 12px;
}

.conference-logo.confidence {
  background-image: url('./conferences/confidence.png');
}

.conference-logo.ths {
  background-image: url('./conferences/ths.jpg');
}

.conference-logo.wdi {
  background-image: url('./conferences/wdi.png');
}

.conference-logo.bbdays {
  background-image: url('./conferences/bbdays.png');
}

.conference-logo.mjs {
  background-image: url('./conferences/mjs.png');
}