.nexus-homepage {
  --nexus-spacing: 6rem;
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.nexus-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section - Variation 3: Typographic focus */
.nexus-hero {
  padding: 10rem 0 4rem;
  text-align: left;
}

.nexus-hero-headline {
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.nexus-hero-subtext {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.nexus-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: gap 0.3s ease;
}

.nexus-hero-link:hover {
  gap: 1.25rem;
}

.nexus-hero-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Banner Image - Below Fold */
.nexus-banner {
  width: 100%;
  height: 600px;
  margin-top: 4rem;
  overflow: hidden;
}

.nexus-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.8);
}

/* Features Grid */
.nexus-features {
  padding: var(--nexus-spacing) 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.nexus-feature-card {
  grid-column: span 4;
  padding: 3rem;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}

.nexus-feature-card:hover {
  border-color: var(--color-primary);
}

.nexus-feature-icon {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.nexus-feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.nexus-feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing Section */
.nexus-pricing-section {
  padding: var(--nexus-spacing) 0;
  background: var(--color-secondary);
}

.nexus-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nexus-pricing-card {
  background: var(--color-background);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
}

.nexus-pricing-card.popular {
  background: var(--color-surface);
  position: relative;
}

.nexus-pricing-card.popular::before {
  content: 'Recommended';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  background: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

.nexus-price {
  font-size: 3rem;
  font-weight: 700;
  margin: 2rem 0;
}

.nexus-price span {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.nexus-pricing-features {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.nexus-pricing-features li {
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Testimonials */
.nexus-testimonials {
  padding: var(--nexus-spacing) 0;
}

.nexus-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.nexus-testimonial-item {
  border-left: 2px solid var(--color-primary);
  padding-left: 2rem;
}

.nexus-quote {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.nexus-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nexus-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.nexus-author-info strong {
  display: block;
  font-size: 1rem;
}

.nexus-author-info span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Bottom CTA */
.nexus-bottom-cta {
  padding: var(--nexus-spacing) 0 10rem;
  text-align: center;
}

.nexus-cta-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .nexus-feature-card { grid-column: span 6; }
  .nexus-pricing-grid { grid-template-columns: 1fr; }
  .nexus-testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nexus-feature-card { grid-column: span 12; }
  .nexus-hero { padding: 6rem 0 3rem; }
  .nexus-banner { height: 400px; }
}