/* =============================================
   TEASER PAGE — teaser.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: 'DM Sans', sans-serif;
  background: #ffffff;
  color: #0f0f0f;
}

/* ── Navbar ── */
.teaser-nav {
  display: flex;
  align-items: center;
  padding: 20px 48px;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.teaser-nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: 40px;
}

.teaser-nav-project {
  font-size: 13px;
  font-weight: 700;
  color: #0f0f0f;
  letter-spacing: 0.05em;
}

.teaser-nav-manhattan {
  font-size: 13px;
  font-weight: 700;
  color: #e63946;
}

.teaser-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.teaser-nav-links a {
  font-size: 14px;
  color: #5a5a5a;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.18s ease;
}

.teaser-nav-links a:hover,
.teaser-nav-links a.active {
  color: #0f0f0f;
}

/* Dropdown */
.teaser-dropdown {
  position: relative;
}

.teaser-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  min-width: 160px;
  overflow: hidden;
  list-style: none;
  padding: 4px 0;
  z-index: 200;
}

.teaser-dropdown:hover .teaser-dropdown-menu {
  display: block;
}

.teaser-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: #0f0f0f !important;
  text-decoration: none;
  transition: background 0.18s ease;
}

.teaser-dropdown-menu a:hover {
  background: #f5f5f5;
}

/* Login button */
.teaser-login-btn {
  padding: 8px 20px;
  background: #0f0f0f;
  color: white;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.18s ease;
}

.teaser-login-btn:hover {
  background: #2a2a2a;
}

/* ── Sections ── */
.teaser-section {
  padding: 80px 48px;
  background: #ffffff;
}

.teaser-section-alt {
  background: #f9f9f9;
}

.teaser-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.teaser-content-reverse {
  direction: rtl;
}

.teaser-content-reverse > * {
  direction: ltr;
}

/* ── Left text ── */
.teaser-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a6fdb;
  background: #f0f5ff;
  border: 1px solid #c0d4f5;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.teaser-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f0f0f;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.teaser-desc {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 32px;
}

.teaser-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}

.teaser-btn-primary {
  padding: 12px 24px;
  background: #0f0f0f;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
}

.teaser-btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.teaser-btn-secondary {
  padding: 12px 24px;
  background: white;
  color: #0f0f0f;
  border: 1.5px solid #e8e8e8;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.18s ease;
}

.teaser-btn-secondary:hover {
  border-color: #0f0f0f;
}

/* ── Right image ── */
.teaser-right img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

/* ── Compliance Strip ── */
.teaser-compliance {
  padding: 48px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
}

.teaser-compliance-label {
  font-size: 12px;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  font-weight: 600;
}

.teaser-compliance-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.teaser-compliance-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.18s ease;
}

.teaser-compliance-logos img:hover {
  opacity: 1;
}

.teaser-compliance-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── CTA Section ── */
.teaser-cta {
  padding: 80px 48px;
  text-align: center;
  background: #0f0f0f;
  color: white;
}

.teaser-cta h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.teaser-cta p {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 32px;
}

.teaser-cta .teaser-btn-primary {
  background: white;
  color: #0f0f0f;
}

.teaser-cta .teaser-btn-primary:hover {
  background: #f5f5f5;
}

.teaser-cta .teaser-btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}

.teaser-cta .teaser-btn-secondary:hover {
  border-color: white;
}

/* ── Footer ── */
.teaser-footer {
  text-align: center;
  padding: 24px 48px;
  border-top: 1px solid #e8e8e8;
  font-size: 12px;
  color: #5a5a5a;
  line-height: 1.8;
}

.teaser-footer strong {
  color: #0f0f0f;
}