/* CrewReady — Landing Page Styles */

:root {
  --navy: #1a2744;
  --navy-dark: #0f1a30;
  --navy-light: #243460;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
  --gray-700: #334155;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--navy-dark);
  padding: 0 24px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  font-size: 1.5rem;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.brand-name span {
  color: var(--gold);
}

.header-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px 72px;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

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

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SECTIONS ===== */
.section {
  padding: 64px 24px;
}

.section-alt {
  background: var(--gray-50);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--gray-600);
  font-size: 0.97rem;
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ===== TENANT CARDS ===== */
.tenant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.tenant-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.tenant-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(26,39,68,0.10);
  transform: translateY(-2px);
}

.tenant-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tenant-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.tenant-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.tenant-url {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 2px;
}

.tenant-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
}

.tenant-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 3px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.feature-card:hover {
  border-color: rgba(26,39,68,0.25);
  box-shadow: 0 4px 20px rgba(26,39,68,0.08);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.85rem;
}

.site-footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero {
    padding: 56px 20px 48px;
  }

  .header-tagline {
    display: none;
  }

  .tenant-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 20px;
  }
}
