:root {
  --bg-color: #0b0f19;
  --bg-secondary: #111827;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --accent-color: #ffc800;
  --accent-hover: #e6b400;
  --border-color: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.08);
  --gradient-primary: linear-gradient(135deg, #ffc800 0%, #ff9100 100%);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.bg-darker {
  background-color: var(--bg-secondary);
}

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

.highlight {
  color: var(--accent-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent-color);
  color: #000;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 200, 0, 0.2);
}

.btn-outline {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent-color);
  color: #000;
}

/* Navigation */
.navbar {
  height: var(--nav-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

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

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
}

.btn-nav {
  padding: 8px 20px;
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  color: var(--accent-color) !important;
}

.btn-nav:hover {
  background: var(--accent-color);
  color: #000 !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-subtitle {
  display: block;
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 30px;
  line-height: 1.1;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 200, 0, 0.1);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255, 200, 0, 0.2);
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 200, 0, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 16px;
  transition: var(--transition);
}

.card:hover {
  background: var(--card-hover);
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 200, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border-color);
}

.timeline-item {
  margin-bottom: 60px;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 40px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 40px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  top: 0;
  box-shadow: 0 0 0 4px rgba(255, 200, 0, 0.2);
}

.timeline-item:nth-child(odd)::after {
  right: -10px;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
}

.timeline-content {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.phase-tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 700;
}

.check-list {
  margin-top: 15px;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.timeline-item:nth-child(odd) .check-list li {
  padding-left: 0;
  padding-right: 20px;
}

.check-list li::before {
  content: '•';
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.timeline-item:nth-child(odd) .check-list li::before {
  left: auto;
  right: 0;
}

/* Business Model */
.feature-box {
  text-align: center;
  padding: 30px;
}

.feature-box i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.info-block {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 16px;
}

.info-block h3 {
  margin-bottom: 20px;
  color: var(--accent-color);
}

.info-block ul li {
  margin-bottom: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.info-block ul li:last-child {
  border-bottom: none;
}

.info-block strong {
  color: #fff;
}

.alert-box {
  margin-top: 40px;
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid var(--accent-color);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.alert-box i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-img-wrapper {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h3 {
  margin-bottom: 5px;
}

.role {
  color: var(--accent-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.socials a {
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.socials a:hover {
  color: var(--accent-color);
}

.team-desc {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.team-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-secondary);
  font-style: italic;
}

/* Support */
.support-item {
  text-align: center;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.support-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* Apply */
.apply-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.apply-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.apply-list i {
  color: var(--accent-color);
}

.apply-card {
  background: #fff;
  color: #000;
  padding: 40px;
  border-radius: 20px;
}

.apply-card h3 {
  color: #000;
  margin-bottom: 15px;
}

.apply-card p {
  color: #4b5563;
  margin-bottom: 20px;
}

.apply-card ol {
  padding-left: 20px;
  margin-bottom: 30px;
  color: #4b5563;
}

.apply-card ol li {
  margin-bottom: 10px;
}

.apply-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.full-width {
  width: 100%;
  text-align: center;
}

/* Contact */
.contact-container {
  max-width: 800px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-group.full {
  grid-column: span 2;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.contact-email {
  text-align: center;
  color: var(--text-secondary);
}

.contact-email a {
  color: var(--accent-color);
}

/* Footer */
footer {
  background: #000;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}

.social-links a:hover {
  background: var(--accent-color);
  color: #000;
}

.legal a {
  color: var(--text-secondary);
  margin-left: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: left;
    padding-left: 50px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item::after {
    left: 11px !important;
  }

  .split-grid,
  .apply-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .legal a {
    margin: 0 10px;
  }
}

/* Timeline Animation */
.timeline-item {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.timeline-img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.timeline-img:hover {
  transform: scale(1.02);
}