/* ========================================================================
   Generated Stylesheet — sitegen
   Built from site.yaml theme tokens.  DO NOT EDIT — change site.yaml
   and rebuild.
   ======================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #6366f1;
  --brand-dark: #4338ca;
  --brand-light: #818cf8;
  --accent: #f97316;
  --accent-light: #fb923c;
  --bg: #fafafa;
  --bg-alt: #ffffff;
  --text: #1e1e2e;
  --text-light: #64748b;
  --border: #e2e8f0;
  --hero-overlay: rgba(67, 56, 202, 0.88);
  --radius: 10px;
  --shadow: 0 4px 16px rgba(0,0,0,.06);
  --max-w: 1140px;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.25; color: var(--text); }
h1 { font-size: 2.6rem; font-weight: 800; }
h2 { font-size: 2rem;   font-weight: 700; margin-bottom: .6em; }
h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: .4em; }
p  { margin-bottom: 1em; }

/* --- Navigation --- */
.site-nav {
  background: var(--brand-dark);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.site-nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.site-nav .logo {
  font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: .04em;
}
.site-nav .logo span { color: var(--accent); }
.site-nav ul {
  list-style: none; display: flex; gap: 28px;
}
.site-nav a {
  color: rgba(255,255,255,.85); font-weight: 500; font-size: .95rem;
  transition: color .2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--accent); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #312e81 0%, #4338ca 40%, #6366f1 100%);
  color: #fff; padding: 80px 0 72px; text-align: center;
}
.hero h1 { font-size: 3rem; margin-bottom: .35em; color: #fff; }
.hero .tagline {
  font-size: 1.3rem; opacity: .92; max-width: 640px; margin: 0 auto 1.6em;
  line-height: 1.55;
}
.hero .btn { margin: 0 8px; }

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: background .25s, transform .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent); color: var(--brand-dark);
}
.btn-primary:hover { background: var(--accent-light); color: var(--brand-dark); }
.btn-outline {
  border: 2px solid #fff; color: #fff; background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-brand {
  background: var(--brand); color: #fff;
}
.btn-brand:hover { background: var(--brand-light); color: #fff; }

/* --- Sections --- */
section { padding: 72px 0; }
section.alt { background: var(--bg-alt); }

.section-intro {
  max-width: 720px; margin: 0 auto 2.5em; text-align: center;
  color: var(--text-light); font-size: 1.1rem;
}

/* --- Card Grid --- */
.card-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.card .icon { font-size: 2.4rem; margin-bottom: 12px; }
.card h3 { margin-top: 4px; }
.card p { color: var(--text-light); font-size: .97rem; }

/* --- Feature Grid (alternating image+text) --- */
.feature-row {
  display: flex; align-items: center; gap: 48px; margin-bottom: 56px;
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-row .text { flex: 1; }
.feature-row .visual {
  flex: 1; background: var(--brand-dark); border-radius: var(--radius);
  min-height: 220px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 3rem; padding: 24px;
}

/* --- Comparison Table --- */
.compare-table {
  width: 100%; border-collapse: collapse; margin: 1.5em 0;
  font-size: .95rem;
}
.compare-table th, .compare-table td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  background: var(--brand-dark); color: #fff; font-weight: 600;
}
.compare-table tbody tr:hover { background: #f1f3f5; }
.compare-table .check { color: var(--brand); font-weight: 700; }
.compare-table .cross { color: #c0392b; }

/* --- Specs List --- */
.specs { list-style: none; }
.specs li { padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; }
.specs li span:first-child { font-weight: 600; min-width: 200px; }

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  text-align: center;
}
.pricing-card {
  background: var(--bg-alt); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: border-color .2s, transform .2s;
}
.pricing-card.featured { border-color: var(--brand); position: relative; }
.pricing-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: .75rem; font-weight: 700;
  padding: 4px 14px; border-radius: 20px;
}
.pricing-card h3 { margin-bottom: .3em; }
.pricing-card .price {
  font-size: 2.2rem; font-weight: 800; color: var(--brand); margin: .3em 0;
}
.pricing-card .price small {
  font-size: .9rem; font-weight: 400; color: var(--text-light);
}
.pricing-card ul { list-style: none; text-align: left; margin: 1.2em 0; }
.pricing-card li { padding: 6px 0; font-size: .93rem; color: var(--text-light); }
.pricing-card li::before { content: '✓ '; color: var(--brand); font-weight: 700; }

/* --- Testimonials / quotes --- */
.quote-block {
  border-left: 4px solid var(--accent); padding: 20px 28px; margin: 2em 0;
  background: var(--bg-alt); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--text-light); font-size: 1.05rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--brand-dark); color: rgba(255,255,255,.75);
  padding: 48px 0 32px; font-size: .9rem;
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 32px;
}
.footer-grid h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 6px; }
.footer-grid a { color: rgba(255,255,255,.7); }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px; text-align: center; opacity: .7;
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5em; }  .mt-2 { margin-top: 1em; }  .mt-3 { margin-top: 2em; }
.mb-1 { margin-bottom: .5em; } .mb-2 { margin-bottom: 1em; } .mb-3 { margin-bottom: 2em; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero .tagline { font-size: 1.05rem; }
  .feature-row, .feature-row.reverse { flex-direction: column; }
  .card-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .site-nav ul {
    display: none; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: var(--brand-dark);
    padding: 16px 24px; gap: 12px;
  }
  .site-nav ul.open { display: flex; }
  .specs li { flex-direction: column; }
  .specs li span:first-child { min-width: auto; margin-bottom: 2px; }
}
