/* Enterprise marketing site styles */

.marketing-site {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #1a1a2e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.marketing-site * {
  box-sizing: border-box;
}

/* Navigation */
.mkt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(15, 15, 19, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mkt-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.mkt-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mkt-nav-links a {
  color: #9999ad;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mkt-nav-links a:hover {
  color: #ffffff;
}

.mkt-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mkt-nav-brand img {
  height: 32px;
}

.mkt-nav-cta {
  display: inline-block;
  padding: 10px 24px;
  background-color: #2563eb;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.mkt-nav-cta:hover {
  background-color: #1d4ed8;
  color: #ffffff !important;
}

/* Mobile nav */
.mkt-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mkt-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: transform 0.2s ease;
}

/* Footer */
.mkt-footer {
  background-color: #0f0f13;
  color: #9999ad;
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.mkt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.mkt-footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 300px;
}

.mkt-footer h4 {
  color: #e0e0e8;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}

.mkt-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mkt-footer li {
  margin-bottom: 10px;
}

.mkt-footer a {
  color: #9999ad;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.mkt-footer a:hover {
  color: #ffffff;
}

.mkt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* Section animations - reuse pattern from Scrollstory */
.mkt-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.mkt-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.mkt-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.mkt-btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.mkt-btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: #2563eb;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #2563eb;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mkt-btn-secondary:hover {
  background-color: rgba(37, 99, 235, 0.08);
}

.mkt-btn-secondary-dark {
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}

.mkt-btn-secondary-dark:hover {
  background-color: rgba(255,255,255,0.08);
  color: #ffffff;
}

/* Cards */
.mkt-card {
  background: #ffffff;
  border: 1px solid #e2e2ea;
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.mkt-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.mkt-card-dark {
  background: #16161d;
  border-color: #2a2a3a;
}

.mkt-card-dark:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Comparison table */
.mkt-comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.mkt-comparison-table th,
.mkt-comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e2e2ea;
  font-size: 15px;
}

.mkt-comparison-table th {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #555568;
}

.mkt-comparison-table tr:last-child td {
  border-bottom: none;
}

/* Form */
.mkt-form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #e2e2ea;
  border-radius: 6px;
  background: #ffffff;
  color: #1a1a2e;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.mkt-form-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.mkt-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23555568' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Responsive */
@media (max-width: 900px) {
  .mkt-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .mkt-nav-links {
    display: none;
  }

  .mkt-nav-toggle {
    display: block;
  }

  .mkt-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 19, 0.98);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .mkt-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mkt-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
