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

body {
  background-color: #191a1b;
  color: #bfbfba;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

h1 {
  color: #bfbfba;
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  color: #bfbfba;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

h3 {
  color: #bfbfba;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  max-width: 700px;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
  color: #a8a9aa;
}

a {
  color: #3994bc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus {
  outline: 3px solid #3994bc;
  outline-offset: 2px;
}

.btn:focus {
  outline: 3px solid #ffff00;
  outline-offset: 2px;
}

.btn-secondary:focus {
  background-color: rgba(57, 148, 188, 0.2);
  outline: 3px solid #3994bc;
}

button:focus,
[role="button"]:focus {
  outline: 3px solid #ffff00;
  outline-offset: 2px;
}

.hero {
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  margin: 0 auto 2rem;
  font-size: 1.25rem;
}

.badge {
  display: inline-block;
  background-color: #2a2b2c;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  margin: 1rem 0;
  color: #bfbfba;
}

code {
  background-color: #2a2b2c;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #bfbfba;
}

pre {
  background-color: #2a2b2c;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  margin: 2rem auto;
  max-width: 600px;
  text-align: left;
  cursor: text;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
}

pre:hover {
  border: 1px solid #3994bc;
}

pre code {
  background-color: transparent;
  padding: 0;
  color: #bfbfba;
}

.stats-bar {
  background-color: #2a2b2c;
  padding: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stats-bar span {
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  margin: 0.5rem;
  min-height: 44px;
  min-width: 44px;
}

.btn-primary {
  background-color: #3994bc;
  color: #191a1b;
}

.btn-primary:hover {
  background-color: #2e7a9c;
}

.btn-secondary {
  background-color: transparent;
  color: #3994bc;
  border: 2px solid #3994bc;
}

.btn-secondary:hover {
  background-color: rgba(57, 148, 188, 0.1);
}

.btn-disabled {
  background-color: #2a2b2c;
  color: #8a8b8c;
  cursor: not-allowed;
  border: none;
  opacity: 0.65;
}

.btn-disabled:hover {
  background-color: #2a2b2c;
}

.features-grid {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  -webkit-flex: 1 1 calc(33.333% - 1rem);
  -moz-flex: 1 1 calc(33.333% - 1rem);
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 300px;
  background-color: #2a2b2c;
  padding: 1.5rem;
  border-radius: 8px;
}

@supports (display: grid) {
  .feature-card {
    flex: none;
    min-width: auto;
  }
}

.feature-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problem-section {
  text-align: center;
  max-width: 700px;
}

.problem-section p {
  margin: 0 auto 0.75rem;
  line-height: 1.6;
}

.who-section {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
}

.who-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.3;
}

.who-section p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.how-it-works {
  max-width: 800px;
}

.how-it-works h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.step {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid #3994bc;
  text-align: left;
}

.step strong {
  display: block;
  margin-bottom: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

th,
td {
  border: 1px solid #3a3b3c;
  padding: 1rem;
  text-align: left;
}

th {
  background-color: #2a2b2c;
  font-weight: 600;
}

thead th {
  border-bottom: 2px solid #3994bc;
}

tbody th {
  font-weight: 500;
  background-color: #1f2021;
}

.pricing-grid {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  -webkit-flex: 1 1 calc(33.333% - 1.5rem);
  -moz-flex: 1 1 calc(33.333% - 1.5rem);
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  background-color: #2a2b2c;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

@supports (display: grid) {
  .pricing-card {
    flex: none;
    min-width: auto;
  }
}

.pricing-card h3 {
  margin-bottom: 1rem;
}

.pricing-card ul {
  text-align: left;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.pricing-card li {
  margin-bottom: 0.5rem;
}

.privacy-section {
  text-align: center;
  max-width: 700px;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item dt {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  color: #bfbfba;
}

.faq-item dd {
  margin-left: 0;
  color: #bfbfba;
}

.cta-banner {
  text-align: center;
  background-color: #2a2b2c;
  border-radius: 12px;
  padding: 3rem 2rem;
}

.cta-banner h2 {
  margin-top: 0;
}

footer {
  padding: 3rem 2rem;
  border-top: 1px solid #2a2b2c;
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  justify-items: center;
  text-align: center;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

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

.footer-section h4 {
  color: #bfbfba;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #a8a9aa;
}

.footer-section a:hover {
  color: #3994bc;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #2a2b2c;
  color: #6a6b6c;
}

.footer-bottom p {
  margin-left: auto;
  margin-right: auto;
}

code {
  background-color: #2a2b2c;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stats-bar {
    gap: 1rem;
    font-size: 0.9rem;
  }

  section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 400px) {
  .hero {
    padding: 5rem 1.75rem 4rem;
  }

  section {
    padding: 3rem 1.75rem;
  }

  footer {
    padding: 2rem 1.75rem;
  }
}

@media print {
  footer {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  a {
    color: inherit;
    text-decoration: underline;
  }
  main {
    max-width: 100%;
    padding: 1rem;
  }
  .cta-banner,
  .stats-bar,
  .badge {
    display: none;
  }
  h1,
  h2,
  h3 {
    color: black;
    page-break-after: avoid;
  }
  .feature-card,
  .pricing-card {
    page-break-inside: avoid;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  a:hover,
  .btn {
    transition: none;
  }
}

/* Premium Live Demo Promo Card Style */
.demo-promo-card {
  background: linear-gradient(135deg, rgba(42, 43, 44, 0.6) 0%, rgba(30, 31, 32, 0.8) 100%);
  border: 1px solid rgba(57, 148, 188, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 800px;
  margin: 3.5rem auto 1.5rem auto;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.demo-promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3994bc, #e65c00, #f9d423);
}

.demo-promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 148, 188, 0.4);
  box-shadow: 0 12px 40px 0 rgba(57, 148, 188, 0.15);
}

.demo-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(230, 92, 0, 0.2) 0%, rgba(249, 212, 35, 0.1) 100%);
  border: 1px solid rgba(230, 92, 0, 0.3);
  color: #f9d423;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.demo-promo-card h2 {
  font-size: 1.85rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #ffffff;
  background: linear-gradient(90deg, #ffffff 0%, #dcdcdc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.demo-promo-card p {
  color: #a8a9aa;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 100%;
}

.demo-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
}

.meta-item {
  font-size: 0.9rem;
  color: #bfbfba;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.demo-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.demo-btn {
  background: linear-gradient(135deg, #3994bc 0%, #2e7a9c 100%);
  color: #191a1b !important;
  font-weight: 700;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(57, 148, 188, 0.25);
}

.demo-btn:hover {
  background: linear-gradient(135deg, #46a7ce 0%, #3994bc 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(57, 148, 188, 0.35);
  text-decoration: none !important;
}

.demo-btn .arrow-icon {
  transition: transform 0.2s ease;
}

.demo-btn:hover .arrow-icon {
  transform: translateX(4px);
}

.demo-link {
  color: #3994bc;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.demo-link:hover {
  color: #46a7ce;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .demo-promo-card {
    padding: 1.75rem;
    margin-top: 2.5rem;
  }
  .demo-promo-card h2 {
    font-size: 1.5rem;
  }
  .demo-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .demo-btn {
    width: 100%;
    justify-content: center;
  }
}

