/* ========================================================================
   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: #1a2744;
  --brand-dark: #0e1a30;
  --brand-light: #2d4a7a;
  --accent: #e8850c;
  --accent-light: #f0a030;
  --bg: #f5f6f8;
  --bg-alt: #ffffff;
  --text: #1a1a2e;
  --text-light: #5a6275;
  --border: #dde1e8;
  --hero-overlay: rgba(14, 26, 48, 0.90);
  --radius: 6px;
  --shadow: 0 1px 4px rgba(0,0,0,.06);
  --max-w: 1180px;
  --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;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .25s cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--brand-light); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.15; color: var(--text); letter-spacing: -0.025em; }
h1 { font-size: 2.8rem; font-weight: 900; }
h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: .5em; letter-spacing: -0.03em; }
h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: .4em; }
p  { margin-bottom: 1em; }

/* Decorative heading accent bar */
h2.text-center {
  position: relative; padding-bottom: .7em;
}
h2.text-center::after {
  content: ''; display: block; width: 48px; height: 3px;
  background: var(--accent); margin: .6em auto 0;
  border-radius: 2px;
}

/* --- Navigation --- */
.site-nav {
  background: var(--brand-dark);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 4px 24px rgba(0,0,0,.25);
}
.site-nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.site-nav .logo {
  font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: .08em; text-transform: uppercase;
}
.site-nav .logo span { color: var(--accent); }
.site-nav ul {
  list-style: none; display: flex; gap: 32px;
}
.site-nav a {
  color: rgba(255,255,255,.7); font-weight: 500; font-size: .88rem;
  letter-spacing: .04em; text-transform: uppercase;
  transition: color .25s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.site-nav a:hover, .site-nav a.active { color: var(--accent); }
.site-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 1px;
  transform: scaleX(0); transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* --- Hero --- */
.hero {
  background: linear-gradient(160deg, #060d18 0%, #0e1a30 30%, #1a2744 70%, #2d4a7a 100%);
  color: #fff; padding: 120px 0 108px; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,162,78,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 64px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero h1 {
  font-size: 3.8rem; margin-bottom: .3em; color: #fff;
  letter-spacing: -0.035em; font-weight: 900;
  position: relative;
}
.hero .tagline {
  font-size: 1.2rem; opacity: .7; max-width: 560px; margin: 0 auto 2.6em;
  line-height: 1.75; position: relative; font-weight: 400;
}
.hero .btn { margin: 0 8px; position: relative; }

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 13px 30px; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent); color: var(--brand-dark);
  box-shadow: 0 4px 16px rgba(200,162,78,.3);
  font-weight: 700;
}
.btn-primary:hover { background: var(--accent-light); color: var(--brand-dark); box-shadow: 0 6px 24px rgba(200,162,78,.4); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.35); color: rgba(255,255,255,.9); background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); color: #fff; }
.btn-brand {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 16px rgba(30,58,95,.25);
}
.btn-brand:hover { background: var(--brand-light); color: #fff; box-shadow: 0 6px 24px rgba(30,58,95,.35); }

/* --- Sections --- */
section {
  padding: 96px 0; position: relative;
}
section:nth-of-type(even) { padding: 104px 0; }
section.alt {
  background: var(--bg-alt);
  background-image: radial-gradient(circle at 1px 1px, var(--border) .5px, transparent 0);
  background-size: 32px 32px;
}

.section-intro {
  max-width: 640px; margin: 0 auto 3em; text-align: center;
  color: var(--text-light); font-size: 1.05rem; line-height: 1.75;
}

/* --- Card Grid --- */
.card-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative; display: flex; flex-direction: column;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(15,36,64,.1);
  transform: translateY(-3px);
}

/* Photo card image area */
.card-photo .card-img {
  height: 200px; overflow: hidden;
}
.card-photo .card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.card-photo:hover .card-img img {
  transform: scale(1.04);
}

/* Card body (text area) */
.card-body {
  padding: 28px 28px 32px;
  flex: 1; display: flex; flex-direction: column;
}

/* Non-photo cards (icon style) retain padding on full card */
.card:not(.card-photo) {
  border-left: 4px solid var(--brand); border-radius: 2px var(--radius) var(--radius) 2px;
}
.card:not(.card-photo):hover {
  border-left-color: var(--accent);
}
.card:not(.card-photo) .card-body {
  padding: 36px 32px 36px 36px;
}

.card .icon {
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-dark); border-radius: 50%;
  margin-bottom: 20px; color: var(--accent);
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 { margin-top: 0; font-size: 1.2rem; }
.card p { color: var(--text-light); font-size: .95rem; line-height: 1.7; margin-bottom: 0; flex: 1; }
.card-link {
  display: inline-block; margin-top: 16px; font-weight: 600; font-size: .9rem;
  color: var(--brand); letter-spacing: .01em;
  transition: color .2s;
}
.card-link:hover { color: var(--accent); }

/* --- Feature Grid (alternating image+text) --- */
.feature-row {
  display: flex; align-items: center; gap: 72px; margin-bottom: 80px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-row .text { flex: 1; }
.feature-row .text h3 {
  font-size: 1.5rem; margin-bottom: .6em;
  position: relative; padding-left: 20px;
}
.feature-row .text h3::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 3px; background: var(--accent); border-radius: 2px;
}
.feature-row .text p { color: var(--text-light); line-height: 1.8; font-size: .98rem; }
.feature-row .visual {
  flex: 1; background: var(--brand-dark);
  border-radius: var(--radius); position: relative;
  min-height: 280px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); padding: 0;
  overflow: hidden;
}
.feature-row .visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(200,162,78,.06) 100%);
  z-index: 1; pointer-events: none;
}
.feature-row .visual img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.feature-row .visual svg { width: 48px; height: 48px; position: relative; padding: 40px; }

/* --- Comparison Table --- */
.compare-table {
  width: 100%; border-collapse: collapse; margin: 1.5em 0;
  font-size: .95rem; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.compare-table th, .compare-table td {
  padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  background: var(--brand-dark);
  color: rgba(255,255,255,.9); font-weight: 600; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase;
}
.compare-table tbody tr:hover { background: rgba(30,58,95,.03); }
.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: 1px solid var(--border);
  border-radius: var(--radius); padding: 44px 32px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  position: relative;
}
.pricing-card:hover {
  box-shadow: 0 4px 20px rgba(15,36,64,.08);
}
.pricing-card.featured {
  border-color: var(--brand); position: relative;
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(15,36,64,.1);
}
.pricing-card.featured::before {
  content: 'RECOMMENDED'; position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: var(--brand-dark);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  padding: 5px 20px; border-radius: 3px;
}
.pricing-card h3 { margin-bottom: .3em; }
.pricing-card .price {
  font-size: 2.6rem; font-weight: 900; color: var(--brand); margin: .3em 0;
  letter-spacing: -0.03em;
}
.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; }
.pricing-card .btn {
  width: 100%; text-align: center; margin-top: .5em;
}

/* --- 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,.5);
  padding: 72px 0 40px; font-size: .87rem;
  letter-spacing: .01em;
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--accent); margin-bottom: 16px; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-grid a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; text-align: center; font-size: .82rem;
  color: rgba(255,255,255,.3);
}

/* --- 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; }

/* --- Focus / Accessibility --- */
.btn:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero .tagline { font-size: 1.05rem; }
  .hero { padding: 80px 0 72px; }
  .hero::after { height: 32px; }
  section { padding: 64px 0; }
  section:nth-of-type(even) { padding: 72px 0; }
  .feature-row, .feature-row.reverse { flex-direction: column; gap: 32px; }
  .feature-row { margin-bottom: 48px; }
  .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; }
}
