/* FocusGuard Programmatic Pages — Dark Glassmorphism Theme */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  color: #e2e8f0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #93c5fd;
}
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
.nav-logo img {
  width: 32px;
  height: 32px;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  color: #fff;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
p,
li {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}
ul {
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.5rem;
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 2rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}
.step h3 {
  margin-bottom: 0.25rem;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.faq-item p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.comparison-table th {
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
}
.comparison-table td {
  color: rgba(255, 255, 255, 0.75);
}
.check {
  color: #4ade80;
}
.cross {
  color: #f87171;
}
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  margin-bottom: 1rem;
}
.cta-box {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.75rem;
  margin: 2.5rem 0;
}
.cta-box h2 {
  margin-bottom: 0.75rem;
}
.cta-box p {
  margin-bottom: 1.5rem;
}
.footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.footer p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}
.internal-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.internal-links a {
  display: block;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.internal-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 640px) {
  .container {
    padding: 1.5rem 1rem;
  }
  .hero {
    padding: 2.5rem 1rem 2rem;
  }
  .glass-card {
    padding: 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .comparison-table {
    font-size: 0.8125rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem;
  }
}
