﻿:root {
  --ww-orange: #f46e00;
  --ww-orange-dark: #d25c00;
  --ww-charcoal: #1f2329;
  --ww-slate: #2d3138;
  --ww-surface: #ffffff;
  --ww-border: #e5e7eb;
  --ww-soft: #f8fafc;
  --ww-text: #111827;
  --ww-text-soft: #4b5563;
  --ww-green: #1f9d55;
}

main {
  color: var(--ww-text);
}

.hero {
  margin: 20px 0;
  padding: 26px;
  border-radius: 14px;
  border: 1px solid var(--ww-border);
  border-left: 5px solid var(--ww-orange);
  background: radial-gradient(circle at 90% 10%, #ffd9bb 0%, #fff2e6 30%, #ffffff 100%);
}

.hero-pill {
  display: inline-block;
  background: var(--ww-charcoal);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero h2 {
  margin: 10px 0 8px;
  font-size: 36px;
  line-height: 1.1;
}

.hero p {
  margin: 0;
  max-width: 880px;
  color: var(--ww-text-soft);
}

.hero-actions,
.card-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--ww-orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--ww-orange-dark);
}

.btn-secondary {
  background: var(--ww-charcoal);
  color: #fff;
}

.btn-secondary:hover {
  background: #12161c;
}

.proof-strip {
  margin: 16px 0 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}

.proof-item {
  background: #fff;
  border: 1px solid var(--ww-border);
  border-radius: 10px;
  padding: 14px;
}

.proof-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.proof-item p {
  margin: 0;
  color: var(--ww-text-soft);
  font-size: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.product-card {
  background: var(--ww-surface);
  border: 1px solid var(--ww-border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.product-card.live {
  border-top: 4px solid var(--ww-orange);
}

.product-card.soon {
  border-top: 4px solid #6b7280;
}

.status {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.status.live {
  color: #155e37;
  background: #e9f9ef;
}

.status.soon {
  color: #374151;
  background: #f0f2f5;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.product-card p {
  margin: 0;
  color: var(--ww-text-soft);
}

.product-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding: 6px 0 6px 22px;
  border-bottom: 1px solid #f1f1f1;
}

.product-card li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--ww-green);
}

.product-card li:last-child {
  border-bottom: none;
}

.demo-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.demo-visual {
  background: linear-gradient(135deg, #2d3138 0%, #111827 100%);
  border-radius: 12px;
  padding: 16px;
}

.demo-carousel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 12px;
  color: #f9fafb;
  background: linear-gradient(180deg, rgba(244, 110, 0, 0.18), rgba(0, 0, 0, 0.22));
}

.demo-carousel-track {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #0f172a;
  min-height: 310px;
}

.demo-slide {
  display: none;
  margin: 0;
}

.demo-slide.active {
  display: block;
}

.demo-slide img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
  background: #111827;
}

.demo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-80%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.65);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.demo-nav:hover {
  background: rgba(17, 24, 39, 0.9);
}

.demo-nav.prev {
  left: 20px;
}

.demo-nav.next {
  right: 20px;
}

.demo-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.demo-dot.active {
  background: #f46e00;
}

.demo-caption {
  margin: 10px 0 0 0;
  color: #e5e7eb;
  font-size: 14px;
  min-height: 38px;
}

.demo-carousel-footer {
  margin-top: 6px;
}

.demo-form-wrap {
  border: 1px solid var(--ww-border);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.demo-form-wrap h3 {
  margin: 0 0 6px;
}

.demo-form-wrap p {
  margin: 0 0 12px;
  color: var(--ww-text-soft);
}

.lead-form {
  display: grid;
  gap: 8px;
}

.lead-form label {
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
}

.form-status {
  min-height: 18px;
  margin: 0;
  font-size: 13px;
  color: #374151;
}

.testimonial-section {
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--ww-border);
  background: var(--ww-soft);
}

.testimonial-section h3 {
  margin-top: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--ww-border);
  border-radius: 10px;
  padding: 14px;
}

.testimonial-card p {
  margin-top: 0;
  margin-bottom: 10px;
  font-style: italic;
  color: #1f2937;
}

.testimonial-card span {
  font-size: 12px;
  color: #6b7280;
}

.waitlist-section {
  border: 1px solid var(--ww-border);
  border-left: 5px solid var(--ww-charcoal);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
}

.waitlist-section h3 {
  margin: 0 0 6px;
}

.waitlist-section p {
  margin: 0 0 12px;
  color: var(--ww-text-soft);
}

.lead-form-inline {
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
}

.lead-form-inline label,
.lead-form-inline input,
.lead-form-inline button,
.lead-form-inline .form-status {
  grid-column: span 1;
}

.lead-form-inline label:nth-of-type(3),
.lead-form-inline input:nth-of-type(3),
.lead-form-inline button,
.lead-form-inline .form-status {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .proof-strip,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .demo-section,
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero h2 {
    font-size: 28px;
  }

  .proof-strip,
  .testimonial-grid,
  .lead-form-inline {
    grid-template-columns: 1fr;
  }

  .lead-form-inline label,
  .lead-form-inline input,
  .lead-form-inline button,
  .lead-form-inline .form-status,
  .lead-form-inline label:nth-of-type(3),
  .lead-form-inline input:nth-of-type(3) {
    grid-column: span 1;
  }

  .hero,
  .product-card,
  .demo-form-wrap,
  .waitlist-section,
  .testimonial-section {
    padding: 14px;
  }

  .demo-slide img,
  .demo-carousel-track {
    min-height: 220px;
    height: 220px;
  }
}
