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

:root {
  --primary-color: #FFB800;
  --primary-gold: #FFB800;
  --bg-dark: #0a0a0a;
  --bg-section: #141414;
  --bg-cta-box: #000000;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border-color: #2a2a2a;
  --border-light: rgba(255, 255, 255, 0.3);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header .logo {
  height: 40px;
  object-fit: contain;
}

.share-button {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.share-button:hover {
  opacity: 1;
  transform: scale(1.1);
}

.share-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 120px 20px 60px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.85));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  width: 100%;
  padding-top: 60px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 80px);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 180px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(13px, 1.6vw, 15px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 50px;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA Box */
.hero-cta-box {
  background: var(--bg-cta-box);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  margin: 0 auto;
}

.cta-box-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.6;
  text-align: center;
}

/* Hero Form */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-input {
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  background: #D9D9D9;
  border: none;
  border-radius: 8px;
  color: #000000;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.form-input::placeholder {
  color: #666666;
}

.form-input:focus {
  outline: none;
  background: #E5E5E5;
  box-shadow: 0 0 0 2px var(--border-gold);
}

.form-note {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

/* Buttons */
.btn {
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: auto;
  max-width: fit-content;
  margin: 0 auto;
}

.btn-primary {
  background: transparent;
  color: var(--primary-color);
  font-weight: 700;
  border: 2px solid var(--border-light);
}

.btn-primary:hover {
  background: rgba(255, 184, 0, 0.1);
  color: #FFC933;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
  background: white;
  color: var(--bg-dark);
}

.btn-large {
  padding: 22px 50px;
  font-size: 18px;
}

/* Section */
.section {
  padding: 80px 20px;
  position: relative;
}

.section:nth-child(even) {
  background-color: var(--bg-section);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 400;
  letter-spacing: 2px;
  text-align: left;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: left;
  letter-spacing: 1px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

/* Why Join Early Section */
.why-join-early {
  background-color: var(--bg-dark);
}

.early-benefits-layout {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

.benefits-photo {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-light);
  transform: translateX(5px);
}

.benefit-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}

.benefit-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-primary);
}

/* Features Section */
.features {
  position: relative;
  background-color: var(--bg-section);
  overflow: hidden;
}

.features-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/image 242.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.features-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.features-content {
  position: relative;
  z-index: 2;
}

.features-main-title {
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.features-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  max-width: 800px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
}

/* AI Squad Section */
.ai-squad {
  position: relative;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.ai-squad-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/image 241.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.ai-squad-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.ai-squad-content {
  position: relative;
  z-index: 2;
}

.ai-squad-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 60px;
  max-width: 700px;
}

.ai-squad-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.ai-agent-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ai-agent-card:hover {
  background: rgba(40, 40, 40, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(10px);
}

.agent-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.agent-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.agent-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.agent-text strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* Stats Section */
.stats {
  background-color: var(--bg-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Verified Section */
.verified {
  background-color: var(--bg-dark);
  padding: 80px 20px 40px;
}

.verified .container {
  margin: 0;
  max-width: 100%;
}

.verified-content {
  max-width: 800px;
  margin-bottom: 60px;
  margin-left: 0;
  text-align: left;
}

.verified-text {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  text-align: left;
}

.verified-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.verified-image-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.verified-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
  display: block;
}

.verified-image-item .image-caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: white !important;
  text-align: center;
  z-index: 2;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
  padding: 0 40px;
  line-height: 1.4;
}

.image-caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: white;
  text-align: center;
  z-index: 2;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
  padding: 0 40px;
  line-height: 1.4;
}

/* CTA Section */
.cta {
  background-color: var(--bg-section);
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-dark);
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Verified Section */
.verified {
  background-color: var(--bg-section);
  text-align: center;
  padding: 100px 20px;
}

.verified-badge {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.1));
}

.verified-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.verified-text {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Atmosphere Section */
.atmosphere {
  background-color: var(--bg-dark);
  padding: 0;
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.atmosphere-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.atmosphere-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--bg-section);
  padding: 60px 20px;
  border-top: 1px solid var(--border-color);
}

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

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.social-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  /* Header */
  .header {
    padding: 15px 0;
  }
  
  .header .logo {
    height: 32px;
  }
  
  .share-button {
    padding: 8px;
  }
  
  .share-icon {
    width: 20px;
    height: 20px;
  }
  
  /* Hero */
  .hero {
    min-height: 85vh;
    padding: 100px 20px 50px;
  }
  
  .hero-content {
    padding-top: 40px;
  }
  
  .hero-title {
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 140px;
  }
  
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
  
  .hero-cta-box {
    padding: 28px 24px;
    border-radius: 10px;
  }
  
  .cta-box-text {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  /* Why Join Early */
  .early-benefits-layout {
    position: relative;
    padding-left: 90px;
    padding-right: 0;
    display: flex;
    align-items: center;
  }
  
  .benefits-photo {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: auto;
    z-index: 0;
  }
  
  .benefits-list {
    position: relative;
    z-index: 1;
    gap: 10px;
    width: 100%;
    padding-right: 10px;
  }
  
  .benefit-card {
    padding: 18px 20px;
    gap: 16px;
  }
  
  .benefit-number {
    font-size: 36px;
    width: 45px;
  }
  
  .benefit-text {
    font-size: 14px;
  }
  
  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 24px 20px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-text {
    font-size: 15px;
  }
  
  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stat-number {
    font-size: 60px;
  }
  
  /* CTA */
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    aspect-ratio: 4/3;
  }
  
  /* Atmosphere */
  .atmosphere-grid {
    grid-template-columns: 1fr;
  }
  
  .atmosphere-item {
    aspect-ratio: 16/9;
  }
  
  /* Sections */
  .section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .section-subtitle {
    font-size: 12px;
    margin-bottom: 40px;
  }
  
  /* Verified */
  .verified {
    padding: 60px 20px;
  }
  
  .verified-badge {
    width: 120px;
    height: 120px;
  }
  
  .verified-title {
    font-size: 28px;
  }
  
  .verified-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  /* Hero */
  .hero {
    min-height: 82vh;
    padding: 90px 15px 40px;
  }
  
  .hero-content {
    padding-top: 30px;
  }
  
  .hero-title {
    font-size: 36px;
    letter-spacing: 1px;
    margin-bottom: 100px;
  }
  
  .hero-subtitle {
    font-size: 12px;
    margin-bottom: 32px;
  }
  
  .hero-cta-box {
    padding: 24px 20px;
    border-radius: 8px;
  }
  
  .cta-box-text {
    font-size: 12px;
    margin-bottom: 16px;
  }
  
  .form-input {
    padding: 16px 20px;
    font-size: 15px;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  
  .btn-large {
    padding: 18px 32px;
    font-size: 15px;
  }
  
  /* Sections */
  .section {
    padding: 50px 15px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 11px;
  }
  
  /* Why Join Early */
  .early-benefits-layout {
    position: relative;
    padding-left: 60px;
    padding-right: 10px;
    display: flex;
    align-items: center;
  }
  
  .benefits-photo {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: auto;
    z-index: 0;
  }
  
  .team-photo {
    border-radius: 6px;
    width: 100%;
    height: auto;
  }
  
  .benefits-list {
    position: relative;
    z-index: 1;
    gap: 10px;
    width: 100%;
  }
  
  .benefit-card {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 8px;
  }
  
  .benefit-number {
    font-size: 28px;
    width: 35px;
  }
  
  .benefit-text {
    font-size: 12px;
  }
  
  /* Features */
  .feature-item {
    padding: 20px 16px;
  }
  
  .feature-icon {
    width: 36px;
    height: 36px;
  }
  
  .feature-text {
    font-size: 14px;
  }
  
  /* AI Squad */
  .ai-squad-description {
    font-size: 15px;
    margin-bottom: 40px;
  }
  
  .ai-agent-card {
    padding: 20px;
    gap: 16px;
  }
  
  .agent-icon {
    width: 48px;
    height: 48px;
  }
  
  .agent-icon img {
    width: 28px;
    height: 28px;
  }
  
  .agent-text {
    font-size: 14px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 48px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  /* Verified */
  .verified {
    padding: 60px 15px 30px;
  }
  
  .verified-text {
    font-size: 16px;
  }
  
  .verified-images {
    gap: 15px;
  }
  
  .verified-image-item {
    aspect-ratio: 16 / 9;
  }
  
  .image-caption {
    font-size: 12px !important;
    bottom: 20px;
    padding: 0 20px;
  }
  
  .verified-image-item .image-caption {
    font-size: 12px !important;
  }
  
  /* Legacy Verified */
  .verified {
    padding: 50px 15px;
  }
  
  .verified-badge {
    width: 100px;
    height: 100px;
  }
  
  .verified-title {
    font-size: 24px;
  }
  
  .verified-text {
    font-size: 14px;
  }
  
  /* Footer */
  .footer {
    padding: 40px 15px;
  }
}
