
/* Matrix AirShare - basic site styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
}

a {
  color: #0f766e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo span {
  color: #38bdf8;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

nav a {
  color: #e5e7eb;
  font-weight: 500;
}

nav a:hover {
  color: #38bdf8;
  text-decoration: none;
}

.hero {
  background: radial-gradient(circle at top left, #1e293b, #020617);
  color: white;
  padding: 4rem 1.5rem 4.5rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw + 1.5rem, 3.3rem);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.05rem;
  color: #e5e7eb;
  max-width: 34rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2.5rem;
}

.badge {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cbd5f5;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary,
.btn-outline {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-primary {
  background: linear-gradient(135deg, #0f766e, #22c55e);
  color: white;
  border: none;
}

.btn-primary:hover {
  filter: brightness(1.05);
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #64748b;
  color: #e5e7eb;
}

.hero-note {
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-image-card {
  background: radial-gradient(circle at top, #1d4ed8, #020617);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.7);
}

.hero-image-card h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #bfdbfe;
  margin-top: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.metric {
  padding: 0.75rem 0.8rem;
  border-radius: 1rem;
  background-color: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.metric-value {
  margin-top: 0.3rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.metric-sub {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  font-weight: 600;
}

.section h2 {
  font-size: 1.8rem;
  margin: 0.4rem 0 0.6rem;
}

.section-lede {
  color: #4b5563;
  font-size: 0.98rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: 1.2rem;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.card p {
  margin: 0.35rem 0 0.4rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.card-tag {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.highlight {
  border-left: 3px solid #0f766e;
  padding-left: 1rem;
  margin: 1rem 0;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.list-check li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.82rem;
  color: #0f766e;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead {
  background: #f1f5f9;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

tbody tr:last-child td {
  border-bottom: none;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: #ecfdf3;
  color: #166534;
}

.form-card {
  background: white;
  border-radius: 1.3rem;
  padding: 1.7rem 1.7rem 1.9rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
}

label {
  font-size: 0.84rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.input-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.form-note {
  font-size: 0.78rem;
  color: #6b7280;
}

footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 1.5rem 2rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-inner a {
  color: #0f766e;
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .two-column {
    grid-template-columns: 1fr;
  }
  header {
    position: static;
  }
  nav ul {
    gap: 1rem;
    font-size: 0.8rem;
  }
}