/* ── GigBill — Global Styles ── */

:root {
  --dark: #111113;
  --card: #19191B;
  --gold: #E8C547;
  --gold-dim: #C4A535;
  --off-white: #F0EDE8;
  --subtle: #666;
  --border: #2A2A2C;
  --font: 'DM Sans', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--off-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }

/* ── NAV ── */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
}

nav.fixed {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,17,19,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.logo-icon {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--dark);
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.3px;
}

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

.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--subtle);
  letter-spacing: 0.3px; text-transform: uppercase;
  font-family: var(--mono);
}

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

.nav-email {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--subtle);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-email:hover { color: var(--off-white); }

.nav-cta {
  padding: 8px 20px;
  background: var(--gold) !important;
  color: var(--dark) !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.5px;
}

.nav-cta:hover { opacity: 0.9 !important; background: var(--gold-dim) !important; }

/* ── CENTERED CONTENT (coming soon) ── */

main.centered {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.center-content {
  max-width: 520px;
  text-align: center;
}

/* ── HERO ── */

.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 40px 80px;
  max-width: 1100px; margin: 0 auto;
}

.hero-content { max-width: 640px; }

.hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeIn 0.6s ease 0.3s forwards;
}

/* ── SECTIONS ── */

section {
  padding: 100px 40px;
  max-width: 1100px; margin: 0 auto;
}

.divider {
  height: 1px;
  background: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── TYPOGRAPHY ── */

.tag {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0; animation: fadeIn 0.6s ease forwards;
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  opacity: 0; animation: fadeIn 0.6s ease 0.1s forwards;
}

h1 em { font-style: normal; color: var(--gold); }

h2.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.8px; margin-bottom: 20px;
  animation: none; opacity: 1;
}

.section-label {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px;
}

.desc {
  font-size: 16px; color: var(--subtle);
  line-height: 1.7; margin-bottom: 40px;
  opacity: 0; animation: fadeIn 0.6s ease 0.2s forwards;
}

.section-desc {
  font-size: 16px; color: var(--subtle);
  max-width: 560px; line-height: 1.7; margin-bottom: 48px;
}

.note {
  margin-top: 16px; font-size: 13px; color: var(--subtle);
  opacity: 0; animation: fadeIn 0.6s ease 0.4s forwards;
}

/* ── LEGAL PAGE ── */

.legal { max-width: 720px; margin: 0 auto; padding: 100px 40px 80px; }
.legal h1 { animation: none; opacity: 1; font-size: 32px; letter-spacing: -0.5px; margin-bottom: 8px; }
.legal .date { font-size: 13px; color: var(--subtle); font-family: var(--mono); margin-bottom: 40px; }
.legal h2 { font-size: 18px; font-weight: 600; margin: 32px 0 12px; color: var(--off-white); animation: none; opacity: 1; }
.legal p { font-size: 15px; color: var(--subtle); margin-bottom: 16px; }

/* ── BUTTONS ── */

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--gold); color: var(--dark);
  font-family: var(--font);
  font-weight: 700; font-size: 15px;
  border-radius: 8px; border: none; cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  opacity: 0; animation: fadeIn 0.6s ease 0.3s forwards;
}

.btn-primary:hover { background: var(--gold-dim); opacity: 1; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,197,71,0.25); }

.btn-secondary {
  padding: 14px 28px;
  background: transparent; color: var(--off-white);
  font-weight: 600; font-size: 15px;
  border-radius: 8px; border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover { border-color: var(--subtle); opacity: 1; }

/* ── FEATURES GRID ── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover { border-color: var(--gold); transform: translateY(-2px); }

.feature-icon {
  width: 40px; height: 40px;
  background: rgba(232,197,71,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 20px; color: var(--gold);
}

.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--off-white); }
.feature-card p { font-size: 14px; color: var(--subtle); line-height: 1.6; }

.roles-strip { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }

.role-tag {
  padding: 8px 16px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 6px; font-family: var(--mono);
  font-size: 12px; color: var(--subtle); letter-spacing: 0.3px;
}

/* ── PRICING ── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  padding: 40px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.pricing-card.featured { border-color: var(--gold); position: relative; }

.pricing-badge {
  position: absolute; top: -12px; left: 32px;
  padding: 4px 14px; background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 700; font-family: var(--mono);
  letter-spacing: 0.5px; border-radius: 4px;
}

.pricing-card h3 {
  font-size: 14px; font-weight: 600; color: var(--subtle);
  text-transform: uppercase; letter-spacing: 1px;
  font-family: var(--mono); margin-bottom: 12px;
}

.pricing-price { font-size: 36px; font-weight: 700; color: var(--off-white); margin-bottom: 4px; }
.pricing-price span { font-size: 15px; font-weight: 400; color: var(--subtle); }
.pricing-note { font-size: 13px; color: var(--subtle); margin-bottom: 28px; }

.pricing-features { list-style: none; margin-bottom: 32px; }

.pricing-features li {
  padding: 8px 0; font-size: 14px; color: var(--off-white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}

.pricing-features li::before { content: "✓"; color: var(--gold); font-weight: 700; font-size: 12px; }

/* ── FOOTER ── */

footer {
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--subtle);
}

footer.legal-footer {
  max-width: 720px; margin: 0 auto; padding: 40px;
}

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

.footer-links a {
  color: var(--subtle); text-decoration: none;
  font-family: var(--mono); font-size: 11px;
}

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

/* ── ANIMATION ── */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  main.centered { padding: 40px 24px; }
  .hero { padding: 100px 24px 60px; min-height: auto; }
  section { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  footer { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .legal { padding: 80px 24px 60px; }
  footer.legal-footer { padding: 30px 24px; flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; justify-content: center; }
}
