/* ForensiVault Marketing Site - Vault Gold Brand */
:root {
  --vault-gold: #C89820;
  --vault-gold-bright: #F0C840;
  --vault-gold-light: #FBE29F;
  --integrity-teal: #1AB5CC;
  --deep-navy: #1E2A38;
  --slate-blue: #2F5D7E;
  --steel-gray: #5A6772;
  --cool-gray: #A7B1BA;
  --soft-silver: #D4D9DE;
  --background: #ffffff;
  --foreground: #1E2A38;
  --muted: #5A6772;
  --border: #D4D9DE;
  --card: #f8f9fa;
  --primary: var(--vault-gold);
  --primary-bright: var(--vault-gold-bright);
  --accent: var(--integrity-teal);
}

.dark {
  --background: #0f1318;
  --foreground: #e8eaed;
  --muted: #A7B1BA;
  --border: #2a3442;
  --card: #1a2230;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  transition: background-color 0.3s, color 0.3s;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  background-color: var(--background);
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  height: 36px;
  width: 36px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}

.footer-logo-image {
  height: 28px;
  width: 28px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--foreground);
}

.header-nav .btn-login {
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}

.header-nav .btn-login:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background-color: var(--card);
}

/* Coming Soon Banner */
.coming-soon-banner {
  background: linear-gradient(135deg, var(--vault-gold), var(--vault-gold-bright));
  color: var(--deep-navy);
  padding: 12px 24px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}

.coming-soon-banner.visible {
  display: block;
}

.coming-soon-banner strong {
  font-weight: 700;
}

.coming-soon-banner a {
  color: var(--deep-navy);
  text-decoration: underline;
  font-weight: 600;
}

/* Coming Soon Hero (replaces normal hero when salesEnabled === false) */
.coming-soon-hero {
  padding: 120px 0;
  text-align: center;
  display: none;
}

.coming-soon-hero.visible {
  display: block;
}

.coming-soon-hero .vault-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
}

.coming-soon-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.coming-soon-hero h1 .highlight {
  background: linear-gradient(135deg, var(--vault-gold), var(--vault-gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-hero p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
}

/* Hero Section */
.hero {
  padding: 120px 0;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--vault-gold), var(--vault-gold-bright));
  color: var(--deep-navy);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--vault-gold), var(--vault-gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--vault-gold), var(--vault-gold-bright));
  color: var(--deep-navy);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--card);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--vault-gold), var(--vault-gold-bright));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Page Content */
.page-content {
  padding: 80px 0;
  min-height: 60vh;
}

.page-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 32px 0 16px;
}

.page-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.page-content ul {
  color: var(--muted);
  margin-left: 24px;
  margin-bottom: 16px;
}

.page-content li {
  margin-bottom: 8px;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--foreground);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  background-color: var(--background);
  color: var(--foreground);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 540px;
  margin: 0 auto;
}

.form-success {
  text-align: center;
  padding: 40px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 16px;
}

.form-success h2 {
  margin-bottom: 12px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.footer-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--foreground);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-name {
  font-size: 0.75rem;
}

.footer-copyright {
  color: var(--muted);
  font-size: 0.875rem;
}

/* Email Signup */
.email-signup {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--background);
  color: var(--foreground);
}

.email-input:focus {
  outline: none;
  border-color: var(--primary);
}

.email-input::placeholder {
  color: var(--muted);
}

.form-message {
  margin-top: 16px;
  font-size: 0.875rem;
  text-align: center;
}

.form-message.success {
  color: var(--accent);
}

.form-message.error {
  color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1,
  .coming-soon-hero h1 {
    font-size: 2.5rem;
  }

  .hero p,
  .coming-soon-hero p {
    font-size: 1rem;
  }

  .header-nav {
    display: none;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .form-card {
    padding: 24px;
  }
}
