/* Eagle I marketing site — shared styles */

:root {
  --green: #32DA20;
  --green-dark: #00602E;
  --black: #0A0A0A;
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --text: #e8e8e8;
  --muted: #9ca3af;
  --border: #2a2a2a;
  --border-soft: #1f1f1f;
  --white: #ffffff;
  --max-width: 900px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

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

.container-wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.site-nav {
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.site-nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.site-nav .logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.site-nav .logo-text {
  color: var(--white);
}

.site-nav .logo-text .i {
  color: var(--green);
}

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

.nav-links a {
  padding: 8px 14px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.btn-nav {
  padding: 8px 16px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-links a.btn-nav:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* Hero */
.hero {
  padding: 80px 24px 64px;
}

.badge {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 14px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 24px;
  max-width: 760px;
}

.hero h1 .accent {
  color: var(--green);
}

.hero-lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  background: var(--surface);
}
}

.btn-secondary:hover {
  background: var(--surface);
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Banner grid */
.banner-grid {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

.banner-grid .grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}

.banner-item {
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}

.banner-item:last-child {
  border-right: none;
}

.banner-item .label {
  font-size: 11px;
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.banner-item .desc {
  font-size: 13px;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 80px 24px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 12px;
}

.section h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 48px;
  line-height: 1.2;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
}

.feature-card {
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-card .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
}

.step-card {
  padding: 32px;
  border-right: 1px solid var(--border);
}

.step-card:last-child {
  border-right: none;
}

.step-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 10px;
}

.step-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Privacy block */
.privacy-block {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}

.privacy-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.privacy-inner .section-label {
  color: var(--green-dark);
}

.privacy-list {
  border-left: 2px solid var(--green);
  padding-left: 28px;
}

.privacy-list-item {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.privacy-list-item .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  margin-top: 6px;
  flex-shrink: 0;
}

.privacy-list-item span {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

/* Page header (subpages) */
.page-header {
  padding: 64px 24px 48px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.page-header .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin: 0;
  line-height: 1.7;
}

/* Content prose */
.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 16px;
}

.prose h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.prose p {
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 16px;
}

.prose ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  color: var(--text);
}

.prose li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  border: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}

.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  background: var(--surface);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  font-weight: 800;
  font-size: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--black);
}

.footer-copy {
  font-size: 12px;
  color: #999;
  margin-top: 24px;
}

/* CTA band */
.cta-band {
  background: var(--green-dark);
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
}

.cta-band p {
  font-size: 15px;
  opacity: 0.9;
  margin: 0 0 28px;
}

.cta-band .btn {
  background: var(--white);
  color: var(--green-dark);
}

/* Why Eagle I / competitive edges */
.edge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
}

.edge-card {
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.edge-card h3 {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
}

.edge-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.edge-card .edge-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Comparison table */
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  margin: 24px 0 32px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table th {
  background: var(--surface);
  font-weight: 700;
  font-size: 13px;
}

.compare-table td {
  color: var(--text);
  line-height: 1.6;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .yes {
  color: var(--green-dark);
  font-weight: 600;
}

.compare-table .partial {
  color: var(--muted);
}

.compare-table .no {
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .banner-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .banner-item:last-child {
    border-bottom: none;
  }

  .step-card,
  .feature-card,
  .edge-card {
    border-right: none;
  }

  .nav-links a:not(.btn-nav) {
    display: none;
  }
}

/* ── Dark marketing sections (GO rebuild) ── */
.hero-mountain {
  position: relative;
  padding: 100px 24px 80px;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.92) 70%),
    url("https://images.unsplash.com/photo-1464822759844-d150baec0491?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-mountain .container { position: relative; z-index: 1; }

.section-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 12px; }

.section h2 { color: var(--white); font-size: clamp(28px, 4vw, 36px); font-weight: 700; letter-spacing: -0.5px; line-height: 1.15; margin: 0 0 24px; }

.prose h2, .prose h3 { color: var(--white); }
.prose p, .prose li { color: var(--muted); line-height: 1.75; }
.prose a { color: var(--green); }

.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 40px 24px; }
.footer-copy { color: #666; font-size: 12px; margin: 16px 0 0; }
.footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; margin-right: 16px; }
.footer-links a:hover { color: var(--green); }

.cta-band { background: var(--green-dark); color: var(--white); text-align: center; padding: 64px 24px; }
.cta-band .btn { background: var(--white); color: var(--green-dark); }
.cta-band p { opacity: 0.9; }

.report-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  font-size: 12px;
  color: var(--muted);
}
.report-mock .bar { height: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--green-dark), var(--green)); margin-top: 8px; }

.fdot-row { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; align-items: flex-start; margin-top: 32px; }
.fdot-demo { text-align: center; }
.fdot-stage {
  width: 80px; height: 80px; margin: 0 auto 12px;
  clip-path: circle(50% at 50% 50%);
  position: relative;
}
.fdot-stage svg { width: 100%; height: 100%; display: block; }
.fdot-label { font-size: 13px; color: var(--muted); font-weight: 600; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 32px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.price-card.featured { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.price-card h3 { color: var(--white); margin: 0 0 8px; font-size: 18px; }
.price-card .price { font-size: 32px; font-weight: 800; color: var(--green); margin: 12px 0; }
.price-card ul { padding-left: 18px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 32px; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.testimonial strong { color: var(--white); display: block; margin-top: 12px; font-size: 13px; }

.wlb-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.wlb-bars { display: flex; gap: 6px; align-items: flex-end; height: 120px; }
.wlb-bars span { flex: 1; background: var(--green-dark); border-radius: 4px 4px 0 0; min-height: 12px; }
.wlb-bars span:nth-child(6), .wlb-bars span:nth-child(7) { background: var(--green); }

.mountain-strip {
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.3), rgba(10,10,10,0.95)),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1600&q=80") center/cover;
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 64px 24px;
}
.mountain-strip h2 { color: var(--white); font-size: 28px; max-width: 640px; margin: 0; }

@media (max-width: 768px) {
  .wlb-card { grid-template-columns: 1fr; }
  .hero-mountain { min-height: 420px; padding-top: 72px; }
}

