/* ═══════════════════════════════════════════════════════════════════
   OrbitFlow — Intentionally Plain / "No-Designer" Stylesheet
   ───────────────────────────────────────────────────────────────────
   This site mimics the aesthetic of early-2000s enterprise websites:
   Times New Roman, minimal spacing, basic borders, no visual flair.
   The HTML structure + class names are preserved so ESA edge CSS
   injection can dramatically transform it.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables (boring defaults) ─── */
:root {
  --primary-color: #0000cc;
  --primary-hover: #000099;
  --primary-light: #eeeeff;
  --secondary-color: #333333;
  --text-color: #000000;
  --text-muted: #555555;
  --bg-color: #ffffff;
  --bg-subtle: #f0f0f0;
  --bg-card: #ffffff;
  --border-color: #cccccc;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --font-sans: 'Times New Roman', Times, serif;
  --font-heading: 'Times New Roman', Times, serif;
  --transition-fast: 0s;
  --transition-base: 0s;
  --max-width: 960px;
}

/* ─── Reset (minimal) ─── */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 8px;
}

a {
  color: var(--primary-color);
  text-decoration: underline;
}

a:hover {
  color: var(--primary-hover);
}

a:visited {
  color: #551a8b;
}

ul {
  list-style: disc;
  padding-left: 20px;
}

img {
  max-width: 100%;
}

/* ─── Layout ─── */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* ─── Buttons (flat, underlined links) ─── */
.btn {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-family: var(--font-sans);
  border: 1px solid var(--border-color);
  background: #e8e8e8;
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: #d0d0d0;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--primary-light);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-color);
  border: none;
  text-decoration: underline;
}

.btn-lg {
  padding: 8px 16px;
  font-size: 14px;
}

/* ─── Header / Nav ─── */
.site-header {
  background-color: #f8f8f8;
  border-bottom: 2px solid #000080;
  padding: 8px 0;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-logo {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #000080;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  line-height: 28px;
}

.brand-name {
  font-weight: bold;
  font-size: 16px;
  color: #000080;
  font-family: var(--font-heading);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: #000080;
  font-size: 13px;
  text-decoration: underline;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── Hero ─── */
.hero {
  padding: 40px 16px 32px;
  text-align: center;
  background: #f0f0f0;
  border-bottom: 1px solid #cccccc;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 28px;
  color: #000080;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  border-top: 1px solid #cccccc;
  padding-top: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 20px;
  font-weight: bold;
  color: #000080;
}

.stat-label {
  font-size: 11px;
  color: #555;
}

/* ─── Features ─── */
.features {
  padding: 32px 16px;
  background: #ffffff;
}

.section-title {
  font-size: 20px;
  text-align: center;
  color: #000080;
  margin-bottom: 4px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 13px;
  margin-bottom: 24px;
}

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

.feature-card {
  background: #f8f8f8;
  border: 1px solid #cccccc;
  padding: 16px;
}

.feature-card:hover {
  background: #f0f0f0;
}

.feature-icon {
  display: none;
}

.feature-card h3 {
  font-size: 14px;
  color: #000080;
  margin-bottom: 4px;
}

.feature-card p {
  color: #333;
  font-size: 12px;
  line-height: 1.4;
}

/* ─── Pricing ─── */
.pricing {
  padding: 32px 16px;
  background: #f0f0f0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #cccccc;
  padding: 20px;
  text-align: center;
}

.pricing-card--featured {
  border: 2px solid #000080;
}

.pricing-badge {
  background: #000080;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 16px;
  color: #000080;
  margin-bottom: 8px;
}

.price {
  margin-bottom: 12px;
}

.price-amount {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.price-period {
  font-size: 12px;
  color: #555;
}

.pricing-features {
  text-align: left;
  margin-bottom: 16px;
  list-style: disc;
  padding-left: 20px;
}

.pricing-features li {
  padding: 4px 0;
  font-size: 12px;
  color: #333;
  border-bottom: 1px dotted #ddd;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* ─── Testimonials ─── */
.testimonials {
  padding: 32px 16px;
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f8f8f8;
  border: 1px solid #ddd;
  padding: 16px;
}

.testimonial-card p {
  font-size: 13px;
  font-style: italic;
  color: #333;
  margin-bottom: 8px;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
}

.testimonial-card strong {
  font-size: 12px;
}

.testimonial-card span {
  font-size: 11px;
  color: #555;
}

/* ─── CTA ─── */
.cta {
  padding: 32px 16px;
  background: #000080;
  text-align: center;
  border-top: 3px solid #000066;
}

.cta h2 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}

.cta p {
  color: #ccccff;
  font-size: 13px;
  margin-bottom: 16px;
}

.cta .btn-primary {
  background: #ffffff;
  color: #000080;
  border-color: #ffffff;
  font-weight: bold;
}

.cta .btn-primary:hover {
  background: #eeeeff;
}

/* ─── Footer ─── */
.site-footer {
  background: #333;
  color: #ccc;
  padding: 24px 16px 12px;
  font-size: 12px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #999;
  font-size: 11px;
  margin-top: 8px;
}

.footer-brand .brand-logo {
  background: #555;
}

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

.footer-column h4 {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ddd;
}

.footer-column a {
  color: #aaa;
  font-size: 11px;
  display: block;
  padding: 2px 0;
  text-decoration: underline;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 12px;
  border-top: 1px solid #555;
}

.footer-bottom p {
  font-size: 11px;
  color: #888;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hero h1 { font-size: 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
}
