/* ============================================================
   Marketing Campaigns — public info page
   Reuses tokens from landing.css (navy #003566 + gold #ffc300)
   ============================================================ */

.mc-eyebrow{
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-1);
  background: rgba(0, 53, 102, 0.06);
  border: 1px solid rgba(0, 53, 102, 0.12);
  margin-bottom: 6px;
}
.mc-eyebrow--light{
  color: var(--color-2);
  background: rgba(255, 195, 0, 0.12);
  border-color: rgba(255, 195, 0, 0.28);
}

/* ---------- Buttons ---------- */
.mc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 260ms ease;
}
.mc-btn--primary{
  color: var(--color-3);
  background: linear-gradient(135deg, var(--color-2) 0%, var(--color-accent-light) 100%);
  box-shadow: 0 12px 30px rgba(255, 195, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.mc-btn--primary::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}
.mc-btn--primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 195, 0, 0.42);
}
.mc-btn--primary:hover::before{ left: 100%; }
.mc-btn--primary svg{ transition: transform 260ms ease; }
.mc-btn--primary:hover svg{ transform: translateX(-4px); }
.mc-btn--ghost{
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mc-btn--ghost:hover{
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}
.mc-btn--ghost-dark{
  color: var(--color-1);
  background: rgba(0, 53, 102, 0.06);
  border-color: rgba(0, 53, 102, 0.18);
}
.mc-btn--ghost-dark:hover{
  background: rgba(0, 53, 102, 0.1);
}

/* ---------- HERO ---------- */
.mc-hero{
  position: relative;
  overflow: hidden;
  background-color: var(--color-3);
  background-image: radial-gradient(120% 120% at 85% 0%, #0a2e57 0%, var(--color-3) 48%, #00132a 100%);
  border-radius: 0 0 56px 56px;
}
.mc-hero__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mc-hero__aurora{
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}
.mc-hero__aurora--1{
  width: 560px;
  height: 560px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 195, 0, 0.5), transparent 65%);
}
.mc-hero__aurora--2{
  width: 520px;
  height: 520px;
  bottom: -180px;
  right: -100px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 119, 204, 0.5), transparent 65%);
}
.mc-hero__grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 80%);
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 80%);
  opacity: 0.55;
}
.mc-hero__container{
  position: relative;
  z-index: 2;
  padding: 170px 0 110px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.mc-hero__content{
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.mc-hero__title{
  margin: 0;
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.mc-hero__title span{
  background: linear-gradient(120deg, var(--color-2), var(--color-accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.mc-hero__desc{
  margin: 0;
  max-width: 680px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.74);
}
.mc-hero__buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 4px;
}
.mc-hero__stats{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.mc-hero__stat{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mc-hero__stat strong{
  font-size: 28px;
  font-weight: 800;
  color: var(--color-2);
}
.mc-hero__stat span{
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
}
.mc-hero__stat-divider{
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.14);
}

/* ---------- Section base ---------- */
.mc-section{
  padding: 90px 0;
  background: #fff;
  position: relative;
}
.mc-section--alt{
  background: var(--color-4);
}
.mc-section .varnest-section-title{
  margin-bottom: 48px;
}

/* ---------- Channels ---------- */
.mc-channels{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.mc-channel{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid rgba(0, 53, 102, 0.08);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 53, 102, 0.05);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms ease, border-color 360ms ease;
}
.mc-channel:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(0, 53, 102, 0.12);
  border-color: rgba(255, 195, 0, 0.4);
}
.mc-channel__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  color: var(--color-3);
  background: linear-gradient(135deg, var(--color-2), var(--color-accent-light));
  box-shadow: 0 10px 24px rgba(255, 195, 0, 0.3);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mc-channel:hover .mc-channel__icon{
  transform: scale(1.08) rotate(-5deg);
}
.mc-channel h3{
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-1);
}
.mc-channel p{
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #5b6b7c;
}

/* ---------- Features ---------- */
.mc-features{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mc-feature{
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(0, 53, 102, 0.08);
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(0, 53, 102, 0.05);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms ease, border-color 380ms ease;
  overflow: hidden;
  isolation: isolate;
}
.mc-feature::after{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 195, 0, 0.7), rgba(0, 53, 102, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 380ms ease;
  pointer-events: none;
}
.mc-feature:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 53, 102, 0.13);
  border-color: transparent;
}
.mc-feature:hover::after{ opacity: 1; }
.mc-feature__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
  color: var(--color-1);
  background: linear-gradient(135deg, rgba(0, 53, 102, 0.08), rgba(0, 53, 102, 0.02));
  border: 1px solid rgba(0, 53, 102, 0.08);
  transition: all 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mc-feature:hover .mc-feature__icon{
  color: var(--color-3);
  background: linear-gradient(135deg, var(--color-2), var(--color-accent-light));
  border-color: transparent;
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 10px 24px rgba(255, 195, 0, 0.36);
}
.mc-feature h3{
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-1);
}
.mc-feature p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: #5b6b7c;
}

/* ---------- Audience tags ---------- */
.mc-audience{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.mc-audience__tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-1);
  background: #fff;
  border: 1px solid rgba(0, 53, 102, 0.12);
  box-shadow: 0 4px 14px rgba(0, 53, 102, 0.05);
  transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mc-audience__tag::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-2), var(--color-accent-light));
  box-shadow: 0 0 8px rgba(255, 195, 0, 0.7);
}
.mc-audience__tag:hover{
  transform: translateY(-3px);
  border-color: rgba(255, 195, 0, 0.5);
  box-shadow: 0 10px 24px rgba(255, 195, 0, 0.2);
}

/* ---------- Analytics (dark) ---------- */
.mc-section--dark{
  background-color: var(--color-3);
  background-image: radial-gradient(120% 120% at 80% 0%, #0a2e57 0%, var(--color-3) 50%, #00132a 100%);
  overflow: hidden;
}
.mc-section__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mc-section__inner{
  position: relative;
  z-index: 2;
}
.mc-metrics{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.mc-metric{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 22px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(0, 10, 25, 0.25);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 360ms ease;
}
.mc-metric:hover{
  transform: translateY(-6px);
  border-color: rgba(255, 195, 0, 0.4);
}
.mc-metric strong{
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.mc-metric span{
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
.mc-analytics__note{
  margin: 30px 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Calculators ---------- */
.mc-calcs{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.mc-calc{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid rgba(0, 53, 102, 0.08);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 53, 102, 0.05);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms ease, border-color 360ms ease;
}
.mc-calc:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(0, 53, 102, 0.12);
  border-color: rgba(255, 195, 0, 0.4);
}
.mc-calc__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-3);
  background: linear-gradient(135deg, var(--color-2), var(--color-accent-light));
  box-shadow: 0 8px 18px rgba(255, 195, 0, 0.3);
}
.mc-calc h3{
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-1);
}
.mc-calc p{
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #5b6b7c;
}

/* ---------- Steps ---------- */
.mc-steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mc-step{
  position: relative;
  padding: 30px 24px;
  background: #fff;
  border: 1px solid rgba(0, 53, 102, 0.08);
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(0, 53, 102, 0.05);
  overflow: hidden;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms ease;
}
.mc-step:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 53, 102, 0.12);
}
.mc-step__num{
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 53, 102, 0.14);
  pointer-events: none;
}
.mc-step h3{
  margin: 30px 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-1);
}
.mc-step p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: #5b6b7c;
}

/* ---------- CTA band ---------- */
.mc-cta{
  padding: 0 0 90px;
  background: var(--color-4);
}
.mc-cta__card{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 48px 52px;
  border-radius: 28px;
  overflow: hidden;
  background-color: var(--color-3);
  background-image: radial-gradient(120% 160% at 90% 0%, #0a2e57 0%, var(--color-3) 55%, #00132a 100%);
  box-shadow: 0 30px 70px rgba(0, 10, 25, 0.3);
}
.mc-cta__card::before{
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  top: -160px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 195, 0, 0.35), transparent 65%);
  filter: blur(70px);
  pointer-events: none;
}
.mc-cta__content{
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.mc-cta__content h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
}
.mc-cta__content p{
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}
.mc-cta__buttons{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.mc-cta__buttons .mc-btn--ghost-dark{
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.mc-cta__buttons .mc-btn--ghost-dark:hover{
  background: rgba(255, 255, 255, 0.14);
}

/* ---------- Footer back link ---------- */
.mc-footer__back{
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: color 200ms ease;
}
.mc-footer__back:hover{ color: var(--color-2); }

/* ---------- Responsive ---------- */
@media screen and (max-width: 1100px) {
  .mc-channels{ grid-template-columns: repeat(3, 1fr); }
  .mc-features{ grid-template-columns: repeat(2, 1fr); }
  .mc-metrics{ grid-template-columns: repeat(2, 1fr); }
  .mc-calcs{ grid-template-columns: repeat(3, 1fr); }
  .mc-steps{ grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 768px) {
  .mc-hero__container{ padding: 140px 0 80px; }
  .mc-section{ padding: 70px 0; }
  .mc-cta__card{ padding: 36px 28px; }
}
@media screen and (max-width: 560px) {
  .mc-channels{ grid-template-columns: 1fr; }
  .mc-features{ grid-template-columns: 1fr; }
  .mc-metrics{ grid-template-columns: 1fr; }
  .mc-calcs{ grid-template-columns: 1fr; }
  .mc-steps{ grid-template-columns: 1fr; }
  .mc-hero__stats{ gap: 16px; }
  .mc-cta__card{ flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .mc-channel, .mc-channel__icon, .mc-feature, .mc-feature__icon,
  .mc-audience__tag, .mc-metric, .mc-calc, .mc-step, .mc-btn{
    transition: none;
  }
}
