/* Nest Landing Page */
.nest-landing {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Hero */
.nest-hero {
  background: linear-gradient(135deg, #1a2744 0%, #2d3f6b 50%, #2a9d8f 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}
.nest-hero__badge {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #e9c46a;
  margin-bottom: 1rem;
}
.nest-hero__title {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.nest-hero__subtitle {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.nest-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.nest-landing-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
}
.nest-landing-btn--primary {
  background: #2a9d8f;
  color: white;
}
.nest-landing-btn--primary:hover { background: #238b7e; }
.nest-landing-btn--secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.nest-landing-btn--secondary:hover { border-color: white; }

/* Live Stats Strip */
.nest-landing-stats {
  background: #1a2744;
  padding: 2rem;
}
.nest-landing-stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.nest-landing-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: #2a9d8f;
}
.nest-landing-stat__label {
  font-size: 0.8rem;
  color: #adb5bd;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Sections */
.nest-landing-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.nest-landing-section--dark {
  background: #f8f9fa;
  max-width: 100%;
  padding: 4rem 2rem;
}
.nest-landing-section--dark > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.nest-landing-section__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
  color: #1a2744;
}
.nest-landing-section__subtitle {
  text-align: center;
  color: #6c757d;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

/* Features Grid */
.nest-landing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.nest-landing-feature {
  text-align: center;
  padding: 1.5rem;
}
.nest-landing-feature__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.nest-landing-feature h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: #1a2744;
}
.nest-landing-feature p {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
}

/* Sample Variables Preview */
.nest-landing-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.nest-landing-var-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  border-left: 3px solid #2a9d8f;
}
.nest-landing-var-card__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a2744;
  margin-bottom: 0.5rem;
}
.nest-landing-var-card__meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #6c757d;
}

/* Tier Cards */
.nest-landing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.nest-landing-tier {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
}
.nest-landing-tier--featured {
  border: 2px solid #2a9d8f;
  box-shadow: 0 4px 24px rgba(42, 157, 143, 0.15);
}
.nest-landing-tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2a9d8f;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nest-landing-tier__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 0.5rem;
}
.nest-landing-tier__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2a9d8f;
  margin-bottom: 1.5rem;
}
.nest-landing-tier__price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
}
.nest-landing-tier__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}
.nest-landing-tier__features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #333;
  border-bottom: 1px solid #f8f9fa;
}
.nest-landing-tier__features li:last-child { border: 0; }
.nest-landing-tier .nest-landing-btn {
  display: block;
  padding: 0.6rem 1.5rem;
}

/* Footer */
.nest-landing-footer {
  background: #1a2744;
  color: #adb5bd;
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
}
.nest-landing-footer__brand {
  font-weight: 700;
  color: #e9c46a;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.nest-landing-footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.nest-landing-footer__links a {
  color: #2a9d8f;
  text-decoration: none;
}
.nest-landing-footer__links a:hover { text-decoration: underline; }
.nest-landing-footer__legal {
  font-size: 0.75rem;
  color: #6c757d;
}
.nest-landing-footer__legal a { color: #adb5bd; }

/* Responsive */
@media (max-width: 768px) {
  .nest-hero__title { font-size: 2rem; }
  .nest-landing-stats__grid { grid-template-columns: repeat(3, 1fr); }
  .nest-landing-features { grid-template-columns: 1fr; }
  .nest-landing-preview { grid-template-columns: repeat(2, 1fr); }
  .nest-landing-tiers { grid-template-columns: 1fr; }
}
