/*
 * Compass AI Data Services, LLC — corporate one-pager
 * Palette mirrors website/tailwind.config.js (navy / gold / compass-blue).
 */

:root {
  --navy-900: #070f1c;
  --navy-800: #0a1426;
  --navy-700: #0f1c34;
  --navy-500: #152441;
  --gold: #d4a843;
  --gold-soft: #fbf6e8;
  --compass-blue: #3182ce;
  --compass-blue-light: #63b3ed;
  --text: #f5f7fa;
  --text-muted: #9fb0c7;
  --border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--navy-500) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  padding: 28px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  border-radius: 9px;
  display: block;
}
.brand-name {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

/* Main */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 48px 0 64px;
}

.eyebrow,
.card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero-title .accent { color: var(--gold); }

.hero-sub {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
}

/* Product card */
.product {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 16px;
  padding: 32px;
}
.product-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.product-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 600px;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--compass-blue);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.cta:hover {
  background: var(--compass-blue-light);
  transform: translateY(-1px);
}
.cta-arrow { font-size: 1.05em; }

/* Contact */
.contact-heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-line { color: var(--text-muted); }
.contact-line a {
  color: var(--gold);
  text-decoration: none;
}
.contact-line a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.footer-links-label {
  color: var(--text-muted);
  opacity: 0.7;
  font-size: 0.8rem;
  margin-right: -6px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }

@media (max-width: 560px) {
  main { gap: 44px; padding: 32px 0 48px; }
  .product { padding: 24px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
