/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #05192D;
  color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F26122;
  margin-bottom: 1rem;
}
.lead { font-size: 1.125rem; color: rgba(255,255,255,0.75); max-width: 36rem; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
  background: #F26122;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(242, 97, 34, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(242, 97, 34, 0.45);
  background: #ff6d2e;
}
.btn-ghost {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.3s, backdrop 0.3s, border 0.3s;
}
.nav.scrolled {
  background: rgba(5, 25, 45, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.85rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  background: #8F1E21;
  color: white;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: #FFFFFF; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: #F26122;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  background: rgba(242, 97, 34, 0.15);
  border: 1px solid rgba(242, 97, 34, 0.4);
  border-radius: 6px;
  color: #F26122;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: #F26122;
  color: white;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px; height: 20px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: white;
  position: absolute;
  transition: 0.3s;
}
.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #05192D 0%, #0a2540 50%, #05192D 100%);
  /* Replace with your field image:
  background-image: url('images/hero-field.jpg');
  background-size: cover;
  background-position: center;
  */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,25,45,0.92) 0%, rgba(5,25,45,0.7) 55%, rgba(5,25,45,0.4) 100%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 28rem;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  perspective: 1200px;
}
.hero-screenshot {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* ===== STATS ===== */
.stats {
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.stat-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* ===== OVERVIEW ===== */
.overview { padding: 8rem 0; }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.overview-visual img {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
}
.overview-content h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); margin-bottom: 1.5rem; }
.overview-content .lead { margin-bottom: 2rem; }
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.feature-list li {
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}
.one-line {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: #F26122;
}

/* ===== WHY / COMPARE ===== */
.why { padding: 6rem 0; background: rgba(0,0,0,0.2); }
.compare {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
table { width: 100%; border-collapse: collapse; }
th, td {
  padding: 1.15rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9375rem;
}
th {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  background: rgba(255,255,255,0.03);
}
th:nth-child(2) { color: #F26122; }
td:first-child { color: rgba(255,255,255,0.6); }
.yes { color: #4ade80; font-weight: 500; }
.no { color: rgba(255,255,255,0.4); }

/* ===== CAPABILITIES ===== */
.capabilities { padding: 8rem 0; }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cap-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 97, 34, 0.35);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.4);
}
.cap-icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}
.cap-card:hover .cap-icon { transform: scale(1.15); }
.cap-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.cap-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
}

/* ===== STATEMENT ===== */
.statement {
  padding: 7rem 0;
  background: linear-gradient(180deg, #05192D 0%, #0a1f35 50%, #05192D 100%);
  text-align: center;
}
.statement h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1.5rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.statement p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  max-width: 36rem;
  margin: 0 auto;
}

/* ===== SCREENS ===== */
.screens { padding: 6rem 0; }
.screen-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.screen-row.reverse { direction: rtl; }
.screen-row.reverse > * { direction: ltr; }
.screen-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.screen-text p { color: rgba(255,255,255,0.65); max-width: 28rem; }
.screen-img img {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}

/* ===== COMPLIANCE ===== */
.compliance { padding: 8rem 0; background: rgba(0,0,0,0.15); }
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 2.6rem; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, #8F1E21, #F26122, #005696);
  opacity: 0.4;
}
.timeline-item {
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 0.75rem;
}
.timeline-dot {
  width: 14px; height: 14px;
  background: #F26122;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 4px rgba(242, 97, 34, 0.25);
}
.timeline-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.timeline-item p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

/* ===== PRICING ===== */
.pricing { padding: 8rem 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.price-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,255,255,0.15);
}
.price-card.popular {
  border-color: rgba(242, 97, 34, 0.5);
  background: rgba(242, 97, 34, 0.06);
  transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.06) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #F26122;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}
.price-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}
.members {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0.25rem;
}
.price-type {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}
.price-notes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

/* ===== CONTACT ===== */
.contact { padding: 8rem 0; background: rgba(0,0,0,0.2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
}
.contact-info p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.contact-email {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #F26122;
  transition: opacity 0.2s;
}
.contact-email:hover { opacity: 0.8; }
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
}
.form-group { margin-bottom: 1.35rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F26122;
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover { color: #F26122; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content, .overview-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; max-width: 520px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-8px); }
  .timeline { flex-direction: column; gap: 2.5rem; }
  .timeline::before { display: none; }
  .screen-row, .screen-row.reverse { grid-template-columns: 1fr; direction: ltr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .stats-grid, .cap-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; }
  .hero-text h1 { font-size: 2.5rem; }
}