/* LegacyPort Complete Styles */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0d1117;
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   HERO SECTION
   ========================= */

.legacyport-hero {
  background: #0d1117;
  color: #ffffff;
  padding: 80px 40px 60px 40px;
  text-align: center;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: #22c55e;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px 0;
  max-width: 700px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
}

.btn-primary {
  background: #22c55e;
  color: #000000;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-discord svg {
  width: 20px;
  height: 20px;
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================
   CONVERSIONS SECTION
   ========================= */

.conversions-section {
  background: transparent;
  color: #ffffff;
  padding: 60px 40px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 60px 0;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* All conversion cards - same height */
.conversion-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Small card styling - remove custom padding */
.conversion-card.small-card {
  /* Inherits padding from .conversion-card */
}

/* Big featured card - same padding as others, just wider */
.conversion-card.big-card.featured {
  /* Inherits padding from .conversion-card */
}

.conversion-card.small-card .version-number {
  font-size: 18px;
}

.conversion-card.small-card .conversion-badge {
  font-size: 10px;
  padding: 4px 10px;
}

.conversion-card.small-card .conversion-arrow {
  width: 32px;
  height: 32px;
}

.conversion-card.small-card .conversion-arrow svg {
  width: 18px;
  height: 18px;
}

/* Big card - spans 2 columns */
.conversion-card.big-card {
  grid-column: span 2;
}

.conversion-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.conversion-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
}

/* Orange cards glow orange */
.conversion-card:nth-child(1):hover,
.conversion-card:nth-child(2):hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.25);
}

/* Green cards glow green */
.conversion-card:nth-child(3):hover,
.conversion-card:nth-child(4):hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.25);
}

/* Featured card (purple) glows purple */
.conversion-card.featured {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.05);
}

.conversion-card.featured:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(168, 85, 247, 0.08);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
}

/* Coming soon card - greyed out */
.conversion-card.coming-soon {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.05);
}

.conversion-card.coming-soon:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.conversion-card.coming-soon .conversion-arrow {
  background: rgba(100, 100, 100, 0.1);
  color: rgba(255, 255, 255, 0.3);
}

.conversion-card.coming-soon .version-number {
  color: rgba(255, 255, 255, 0.4);
}

.conversion-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

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

.conversion-badge.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.conversion-badge.grey {
  background: rgba(100, 100, 100, 0.1);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.conversion-badge.purple {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.conversion-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.version-box {
  flex: 1;
  text-align: center;
}

.version-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.version-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.conversion-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  color: #22c55e;
}

.conversion-card.featured .conversion-arrow {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

/* =========================
   PREMIUM FEATURES SECTION
   ========================= */

.premium-features-section {
  background: transparent;
  color: #ffffff;
  padding: 60px 40px;
  position: relative;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #eab308;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 auto 32px;
  width: fit-content;
}

.premium-badge svg {
  width: 14px;
  height: 14px;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.premium-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 20px;
  padding: 48px 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #eab308 0%, #ca8a04 100%);
}

.premium-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(234, 179, 8, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(234, 179, 8, 0.15);
}

.premium-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(234, 179, 8, 0.1);
  border-radius: 16px;
  color: #eab308;
}

.premium-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 16px 0;
  text-align: center;
  color: #ffffff;
}

.premium-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px 0;
  text-align: center;
}

.premium-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.premium-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.premium-features-list li::before {
  content: "✦";
  color: #eab308;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.premium-status {
  text-align: center;
  padding: 12px 24px;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #eab308;
}

/* =========================
   HOW IT WORKS SECTION
   ========================= */

.how-it-works-section {
  background: transparent;
  color: #ffffff;
  padding: 60px 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* Blue step glows blue */
.step-card:nth-child(1):hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

/* Purple step glows purple */
.step-card:nth-child(2):hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2);
}

/* Green step glows green */
.step-card:nth-child(3):hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
}

/* Gold step glows gold */
.step-card:nth-child(4):hover {
  border-color: rgba(234, 179, 8, 0.4);
  box-shadow: 0 8px 32px rgba(234, 179, 8, 0.2);
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.step-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.step-icon.purple {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.step-icon.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.step-icon.gold {
  background: rgba(234, 179, 8, 0.1);
  color: #eab308;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 64px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  z-index: 1;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.step-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* =========================
   PRICING SECTION
   ========================= */

.pricing-section {
  background: transparent;
  color: #ffffff;
  padding: 60px 40px;
}

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(21, 94, 52, 0.2) 0%, rgba(5, 46, 22, 0.3) 100%);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.pricing-badge svg {
  width: 14px;
  height: 14px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.currency {
  font-size: 40px;
  font-weight: 700;
  color: #22c55e;
}

.price {
  font-size: 96px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.period {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.pricing-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.check-icon {
  flex-shrink: 0;
  color: #22c55e;
}

.pricing-cta {
  display: block;
  width: 100%;
  background: #22c55e;
  color: #000000;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 16px;
}

.pricing-cta:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.pricing-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Priority Card Styling */
.pricing-card.priority-card {
  border-color: rgba(234, 179, 8, 0.3);
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(202, 138, 4, 0.15) 100%);
  position: relative;
}

.pricing-card.priority-card::before {
  background: linear-gradient(90deg, #eab308 0%, #ca8a04 100%);
}

.pricing-badge.priority-badge {
  background: rgba(234, 179, 8, 0.15);
  border-color: rgba(234, 179, 8, 0.4);
  color: #eab308;
}

.check-icon.priority-icon {
  color: #eab308;
}

/* Coming Soon Overlay */
.pricing-card.coming-soon-pricing {
  opacity: 0.7;
  position: relative;
}

.coming-soon-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.coming-soon-text {
  background: rgba(234, 179, 8, 0.2);
  border: 1px solid rgba(234, 179, 8, 0.4);
  color: #eab308;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card.coming-soon-pricing .pricing-cta {
  cursor: not-allowed;
  opacity: 0.5;
}

.pricing-card.coming-soon-pricing .pricing-cta:hover {
  transform: none;
  box-shadow: none;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .legacyport-hero {
    padding: 80px 24px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  
  .hero-stats {
    gap: 40px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .conversions-section,
  .how-it-works-section,
  .pricing-section {
    padding: 80px 24px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .conversion-grid {
    grid-template-columns: 1fr;
  }
  
  .conversion-card.small-card {
    padding: 32px 24px;
  }
  
  .conversion-card.small-card .version-number {
    font-size: 24px;
  }
  
  .conversion-card.small-card .conversion-arrow {
    width: 40px;
    height: 40px;
  }
  
  .conversion-card.small-card .conversion-arrow svg {
    width: 24px;
    height: 24px;
  }
  
  .conversion-card.big-card {
    grid-column: span 1;
  }
  
  .version-number {
    font-size: 20px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .step-card {
    padding: 32px 24px;
  }
  
  .step-number {
    font-size: 48px;
    top: 16px;
    right: 16px;
  }
  
  .pricing-card {
    padding: 40px 24px;
  }
  
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .price {
    font-size: 72px;
  }
  
  .currency {
    font-size: 32px;
  }
  
  .premium-features-section {
    padding: 80px 24px;
  }
  
  .premium-grid {
    grid-template-columns: 1fr;
  }
  
  .premium-card {
    padding: 40px 24px;
  }
}