/* ── Reset & Base ─────────────────────────────────── */

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

:root {
  --black:       #050810;
  --card:        #0D1020;
  --card2:       #0A0D18;
  --white:       #ffffff;
  --pink:        #E8638C;
  --pink-lt:     #F090B0;
  --pink-dk:     #C44870;
  --grey:        #7A7A8A;
  --grey-lt:     #A0A0B0;
  --bw:          rgba(255,255,255,0.07);
  --bp:          rgba(232,99,140,0.15);
  --font-brand:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-brand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Announce Banner ─────────────────────────────── */

.announce {
  background: var(--pink);
  color: var(--black);
  text-align: center;
  padding: 11px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 200;
  position: relative;
}

/* ── Navigation ──────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 24px;
  background: rgba(5,8,16,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bw);
}

.nav-logo-pill {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mez {
  background: var(--pink);
  color: #050810;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.25em;
  padding: 5px 11px;
  border-radius: 3px 0 0 3px;
  text-transform: uppercase;
}

.nav-logo-ai {
  color: #fff;
  font-family: var(--font-brand);
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0.25em;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,0.12);
  border-left: none;
  border-radius: 0 3px 3px 0;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 24px;
  margin-left: auto;
}

.nav__links a {
  text-decoration: none;
  font-family: var(--font-brand);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a:hover {
  color: var(--pink);
}

.nav-live-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2DD4CF;
  box-shadow: 0 0 8px rgba(45,212,207,0.6);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.live-dot--teal {
  background: #2DD4CF;
  box-shadow: 0 0 10px rgba(45,212,207,0.6);
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(45,212,207,0.5); }
  50% { box-shadow: 0 0 20px rgba(45,212,207,0.9); }
}

.nav-cta-btn {
  background: var(--pink);
  color: var(--black);
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.nav-cta-btn:hover {
  background: var(--pink-lt);
}

/* ── Hamburger ───────────────────────────────────── */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Menu ─────────────────────────────────── */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(5,8,16,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  text-decoration: none;
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu a:hover {
  color: var(--pink);
}

.mobile-cta {
  background: var(--pink) !important;
  color: var(--black) !important;
  padding: 14px 32px !important;
  border-radius: 3px;
  font-weight: 800 !important;
  font-size: 12px !important;
  margin-top: 16px;
}

/* ── Hero ────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__canvas-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 50% 30%, rgba(232,99,140,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero__ticker-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.hero__ticker {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: tickerScroll 80s linear infinite;
}

.hero__ticker-text {
  display: inline-block;
  font-family: 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(100px, 16vw, 260px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 160px;
  color: rgba(185, 192, 200, 0.22);
  filter: blur(0.9px);
}

.t-mez { color: rgba(255, 255, 255, 0.55); }
.t-ai  { color: rgba(232, 99, 140, 0.55); }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero__image-wrap {
  position: relative;
  z-index: 4;
  background: transparent !important;
}

.hero__image {
  display: block;
  max-height: 92vh;
  width: auto;
  object-fit: contain;
  background: transparent !important;
}

/* ── CTA Duo Section ─────────────────────────────── */

.cta-duo {
  padding: 80px 24px;
  background: var(--black);
  border-top: 1px solid var(--bw);
}

.cta-duo-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-card {
  background: var(--card);
  border: 1px solid var(--bw);
  border-radius: 8px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.cta-card:hover {
  border-color: var(--bp);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-dk), var(--pink), var(--pink-lt));
}

.cta-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-card-glow--pink {
  background: radial-gradient(ellipse at 30% 20%, rgba(232,99,140,0.08) 0%, transparent 60%);
}

.cta-card-glow--warm {
  background: radial-gradient(ellipse at 70% 20%, rgba(232,99,140,0.06) 0%, transparent 60%);
}

.cta-card-inner {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-card-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-card-title em {
  font-style: normal;
  color: var(--pink);
}

.cta-card-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-card-body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 24px;
}

.cta-card-body strong {
  color: var(--white);
  font-weight: 600;
}

.cta-card-note {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  line-height: 1.6;
}

.cta-card-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.stack-item {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

.stack-item::first-letter {
  color: var(--pink);
}

.cta-card-price {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-lt);
  margin-bottom: 28px;
}

.cta-card-price strong {
  color: var(--pink);
  font-weight: 800;
  font-size: 15px;
}

.cta-btn {
  background: var(--pink);
  color: var(--black);
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
  background: var(--pink-lt);
  transform: translateY(-2px);
}

/* ── Site Footer ─────────────────────────────────── */

.site-footer {
  background: var(--card2);
  border-top: 1px solid var(--bw);
  padding: 44px 24px;
  text-align: center;
}

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

.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.footer-logo-mez {
  background: var(--pink);
  color: #050810;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.25em;
  padding: 4px 10px;
  border-radius: 3px 0 0 3px;
  text-transform: uppercase;
}

.footer-logo-ai {
  color: rgba(255,255,255,0.4);
  font-family: var(--font-brand);
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 0.25em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-left: none;
  border-radius: 0 3px 3px 0;
  text-transform: uppercase;
}

.footer-text {
  font-size: 11px;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.9;
}

/* ── Mobile ──────────────────────────────────────── */

@media (max-width: 900px) {
  .cta-duo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
  }

  .nav__links,
  .nav-cta-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__ticker-text {
    font-size: clamp(72px, 14vw, 140px);
  }

  .cta-duo {
    padding: 60px 20px;
  }

  .cta-card {
    padding: 36px 28px;
  }
}

@media (max-width: 480px) {
  .announce {
    font-size: 9px;
    padding: 10px 16px;
    letter-spacing: 0.15em;
  }

  .cta-card-title,
  .cta-card-quote {
    font-size: 20px;
  }
}
