/* Men's Health Matters – Thrive4Life Branded Sponsorship Page */

:root {
  --brand-00: #13294b;
  --brand-01: #13c3e8;
  --brand-02: #75ea8b;
  --brand-03: #1d4b96;
  --brand-04: #27a8c3;
  --brand-05: #83c48f;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --font-body: "Roboto", sans-serif;
  --font-heading: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-00);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: 700;
}

.wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

/* ============================================
   Buttons (matching Thrive4Life exactly)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 9px 0.75rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.15s, background-color 0.15s, border-color 0.15s;
}

.btn.primary {
  background: var(--brand-01);
  color: var(--brand-00);
  border-color: var(--brand-01);
}

.btn.primary:hover {
  background: var(--brand-00);
  color: var(--brand-01);
}

.btn.secondary {
  background: var(--brand-03);
  color: var(--white);
  border-color: var(--brand-03);
}

.btn.secondary:hover {
  background: var(--white);
  color: var(--brand-03);
}

.btn.tertiary {
  background: var(--brand-04);
  color: var(--brand-00);
  border-color: var(--brand-04);
}

.btn.tertiary:hover {
  background: var(--brand-00);
  color: var(--brand-04);
}

.btn--large {
  padding: 14px 1.75rem;
  font-size: 1rem;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand-00);
  color: var(--brand-01);
  border-bottom: 4px solid var(--brand-01);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.logo-link {
  display: inline-block;
}

.logo {
  width: auto;
  max-width: 190px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a:not(.btn) {
  color: var(--brand-01);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: color 0.15s;
}

.nav-desktop a:not(.btn):hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-01);
  cursor: pointer;
  padding: 4px;
  font-size: 1.75rem;
  line-height: 1;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--brand-00);
  padding: 1rem;
  border-bottom: 4px solid var(--brand-01);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a:not(.btn) {
  color: var(--brand-01);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.nav-mobile a:not(.btn):hover {
  color: var(--white);
}

.nav-mobile .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: var(--brand-00);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(43, 169, 192, 0.2), rgba(117, 234, 139, 0.08));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-figure {
  margin: 0;
  justify-self: center;
  max-width: 420px;
  width: 100%;
}

.hero-figure img {
  width: 100%;
  height: auto;
  max-height: min(70vh, 520px);
  object-fit: cover;
  object-position: center 20%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(260px, 400px);
    gap: 3rem;
  }

  .hero-grid .hero-content {
    text-align: left;
  }

  .hero-grid .hero-actions {
    justify-content: flex-start;
  }

  .hero-figure {
    justify-self: end;
    max-width: none;
    transform: translateX(calc(-113px + 1.5cm));
  }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-01);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin: 0 0 1rem;
  line-height: 1.1;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 auto 0.5rem;
  font-weight: 300;
}

.hero-dates {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-02);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
}

.hero-stat {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.75rem;
  letter-spacing: 0.02em;
}

.hero-stat strong {
  color: var(--brand-02);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-urgency {
  margin: 1.25rem 0 0;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-02);
}

.hero-urgency a {
  color: var(--brand-02);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   Stats strip
   ============================================ */
.section--stats {
  background: var(--brand-00);
  padding: 2rem 0;
}

.stats-strip {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 100px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-02);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 4rem 0;
}

.section--light {
  background: var(--gray-50);
}

.section--brand {
  background: var(--brand-00);
  color: var(--white);
}

.section--brand .section-title {
  color: var(--white);
}

.section--brand .lead {
  color: rgba(255, 255, 255, 0.7);
}

.section--brand p {
  color: rgba(255, 255, 255, 0.85);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--brand-00);
  margin: 0 0 1.5rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

/* ============================================
   Lists
   ============================================ */
.list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-01);
}

.list-check li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--brand-00);
  border-bottom: 2px solid var(--brand-00);
  transform: rotate(-45deg);
}

.list-check--light li::before {
  background: var(--brand-02);
}

.list-check--light li::after {
  border-color: var(--brand-00);
}

/* ============================================
   Highlights (Why It Matters pillars)
   ============================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--brand-01);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(19, 195, 232, 0.1);
  color: var(--brand-04);
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-00);
  margin: 0;
}

/* Callout */
.callout {
  background: rgba(19, 195, 232, 0.08);
  border-left: 4px solid var(--brand-01);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  border-radius: 0 8px 8px 0;
}

.callout p {
  margin: 0;
}

/* Sponsor value grid (Why section) */
.sponsor-value-grid {
  margin-top: 3rem;
}

.sponsor-value-grid .subsection-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-00);
  margin: 0 0 0.5rem;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-03);
  margin: 0 0 0.5rem;
}

.value-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Ecosystem callout (About Campaign) */
.ecosystem-callout {
  background: rgba(117, 234, 139, 0.12);
  border: 2px solid var(--brand-02);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.ecosystem-callout p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.6;
}

/* Dual value block (Why Sponsorship) */
.dual-value-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.dual-value-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(19, 195, 232, 0.25);
  border-radius: 10px;
  padding: 1.5rem;
}

.dual-value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-01);
  margin: 0 0 0.5rem;
}

.dual-value-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

/* Proven track record */
.proven-track {
  background: rgba(19, 195, 232, 0.08);
  border-left: 4px solid var(--brand-02);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.proven-track p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

/* Advertising route (Publication) */
.advertising-route {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 2px dashed var(--brand-01);
  border-radius: 10px;
}

.advertising-route h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-03);
  margin: 0 0 0.5rem;
}

.advertising-route p {
  margin: 0;
  font-size: 0.95rem;
}

.advertising-route a {
  color: var(--brand-03);
  font-weight: 700;
}

/* Urgency box (CTA) */
.urgency-box {
  background: rgba(117, 234, 139, 0.1);
  border: 2px solid var(--brand-02);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem auto;
  max-width: 680px;
}

.urgency-box p {
  margin: 0;
  font-size: 1rem;
  color: var(--white);
}

.cta-sub {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Campaign Pillars
   ============================================ */
.campaign-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pillar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(19, 195, 232, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
}

.pillar-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand-01);
  margin-bottom: 0.5rem;
}

.pillar p {
  margin: 0;
}

/* ============================================
   Event Section
   ============================================ */
.event-headline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-03);
  margin-bottom: 1.5rem;
}

.event-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  margin-bottom: 2rem;
}

.event-photo {
  margin: 0 0 1.5rem;
}

.event-photo img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(19, 41, 75, 0.15);
}

.event-photo-caption {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--gray-500);
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}

.event-text p {
  margin-bottom: 1rem;
}

.event-details-card {
  background: var(--brand-00);
  color: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  align-self: start;
}

.event-details-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-01);
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(19, 195, 232, 0.2);
  font-size: 0.95rem;
}

.detail-label {
  font-weight: 700;
  color: var(--brand-01);
}

.detail-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Subsection */
.subsection {
  margin-top: 3rem;
}

.subsection h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-00);
  margin: 0 0 1rem;
}

/* Quote */
.quote {
  margin: 1.5rem 0;
  padding: 1.5rem 2rem;
  background: var(--gray-50);
  border-left: 4px solid var(--brand-02);
  border-radius: 0 8px 8px 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--brand-03);
}

/* Experts */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.expert-card {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 1.5rem;
  border-top: 3px solid var(--brand-04);
}

.expert-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-00);
  margin: 0 0 0.5rem;
}

.expert-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* Webinar Topics */
.webinar-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.topic-tag {
  display: inline-block;
  background: var(--brand-00);
  color: var(--brand-01);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

/* ============================================
   Clinical Partner (Cleveland Clinic London)
   ============================================ */
.section--partner {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  border-top: 4px solid var(--brand-04);
}

.partner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.partner-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-04);
  margin: 0;
}

.ccl-logo {
  display: block;
  height: auto;
}

.ccl-logo--header {
  max-width: 220px;
}

.ccl-logo--card {
  max-width: 180px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1rem;
}

.ccl-logo--t4l {
  position: relative;
  top: -8px;
}

.ccl-logo--contact {
  max-width: 160px;
  flex-shrink: 0;
}

.partner-lead {
  max-width: 780px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--brand-01);
}

.partner-card--ccl {
  border-top-color: var(--brand-04);
}

.partner-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-00);
  margin: 0 0 1rem;
}

.partner-card p {
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.partner-card p:last-child {
  margin-bottom: 0;
}

.ccl-services {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--brand-04);
}

.ccl-services h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-04);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ccl-headline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-00);
  margin: 0 0 1.25rem;
  line-height: 1.3;
}

.ccl-services p {
  font-size: 0.95rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.ccl-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.ccl-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(39, 168, 195, 0.06);
  border: 1px solid rgba(39, 168, 195, 0.2);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  flex: 1 1 200px;
}

.ccl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(39, 168, 195, 0.12);
  color: var(--brand-04);
}

.ccl-highlight p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-00);
}

.ccl-contact {
  background: var(--white);
  border: 2px solid var(--brand-04);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 2px 12px rgba(19, 41, 75, 0.08);
}

.ccl-contact-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ccl-contact p {
  margin: 0;
  color: var(--brand-00);
  font-size: 0.95rem;
}

.ccl-contact p + p {
  margin-top: 0.35rem;
}

.ccl-contact a {
  color: var(--brand-04);
  text-decoration: none;
  font-weight: 600;
}

.ccl-contact a:hover {
  color: var(--brand-00);
  text-decoration: underline;
}

.partner-closing {
  background: rgba(39, 168, 195, 0.06);
  border-left: 4px solid var(--brand-04);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}

.partner-closing p {
  margin: 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-500);
}

/* ============================================
   Sponsorship Tier Cards
   ============================================ */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tier-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.tier-card--featured {
  border: 2px solid var(--brand-01);
  box-shadow: 0 10px 30px rgba(19, 195, 232, 0.15);
  transform: scale(1.02);
}

.tier-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-02);
  color: var(--brand-00);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 9999px;
  z-index: 1;
}

.tier-header {
  padding: 1.5rem;
  text-align: center;
}

.tier-header--bronze {
  background: linear-gradient(135deg, var(--brand-03), var(--brand-04));
  color: var(--white);
}

.tier-header--silver {
  background: linear-gradient(135deg, var(--brand-00), var(--brand-03));
  color: var(--white);
}

.tier-header--gold {
  background: linear-gradient(135deg, var(--brand-00), #13294b);
  color: var(--white);
}

.tier-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  color: var(--white);
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
  color: var(--brand-01);
}

.tier-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.tier-includes {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-03);
  padding: 0 1.5rem;
  margin: 1rem 0 0.5rem;
}

.tier-benefits {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0.5rem 0 0.5rem;
}

.tier-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--brand-00);
}

.tier-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-04);
  font-weight: 700;
}

.tier-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.tier-cta {
  margin: auto 1.5rem 1.5rem;
  justify-content: center;
}

/* ============================================
   Campaign publication (sponsor tiers)
   ============================================ */
#publication.section {
  scroll-margin-top: 5rem;
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 1.5rem;
}

.publication-card {
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--brand-01);
}

.publication-card--gold {
  border-top-color: var(--brand-02);
}

.publication-card--silver {
  border-top-color: var(--brand-01);
}

.publication-card--bronze {
  border-top-color: var(--brand-04);
}

.publication-tier {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-03);
  margin: 0 0 0.5rem;
}

.publication-headline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-00);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.publication-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.55;
  flex-grow: 1;
}

.publication-footnote {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--gray-500);
  font-style: italic;
  max-width: 800px;
}

.publication-reach {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  background: rgba(19, 195, 232, 0.08);
  border-left: 4px solid var(--brand-01);
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
  color: var(--brand-00);
  max-width: 800px;
}

/* ============================================
   Visibility Grid
   ============================================ */
.visibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.vis-card {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 1.25rem;
  border-left: 3px solid var(--brand-01);
}

.vis-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-00);
  margin: 0 0 0.5rem;
}

.vis-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ============================================
   CTA Section
   ============================================ */
.section--cta {
  background: linear-gradient(to bottom, rgba(43, 169, 192, 0.15), rgba(117, 234, 139, 0.08));
}

.section--cta .section-title {
  color: var(--brand-00);
}

.section--cta .lead {
  color: var(--gray-500);
}

.section--cta p {
  color: var(--brand-00);
}

.cta-block {
  margin-top: 2rem;
  padding: 2.5rem;
  background: var(--brand-00);
  border-radius: 12px;
  display: inline-block;
  max-width: 600px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--brand-00);
  color: rgba(255, 255, 255, 0.6);
  padding: 2rem 1rem;
  border-top: 4px solid var(--brand-01);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-style: italic;
  color: var(--brand-01);
  margin: 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--brand-01);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.2);
}

.footer-copy {
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   Campaign calendar (June & July programme)
   ============================================ */
.section--calendar {
  background: var(--gray-50);
  border-top: 4px solid var(--brand-01);
  scroll-margin-top: 5rem;
}

#event.section {
  scroll-margin-top: 5rem;
}

.cal-intro {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.subsection-title-cal {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-00);
  margin: 2rem 0 1rem;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cal-swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}

.cal-swatch--live {
  background: rgba(117, 234, 139, 0.45);
  border-color: var(--brand-02);
}

.cal-swatch--broadcast {
  background: rgba(19, 195, 232, 0.25);
  border-color: var(--brand-01);
}

.cal-swatch--webinar {
  background: linear-gradient(145deg, rgba(19, 195, 232, 0.5), rgba(29, 75, 150, 0.35));
  border-color: var(--brand-03);
}

.cal-swatch--imhw {
  background: rgba(19, 195, 232, 0.12);
  border-color: rgba(19, 195, 232, 0.35);
}

.cal-bimonth {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.cal-month-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.cal-month-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-00);
  margin: 0 0 0.75rem;
  text-align: center;
}

.cal-weekday-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  text-align: center;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-cell {
  position: relative;
  min-height: 2.35rem;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-00);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 4px 5px;
  background: var(--white);
}

.cal-cell--pad {
  border: none;
  background: transparent;
  min-height: 2.35rem;
}

.cal-cell--imhw {
  background: rgba(19, 195, 232, 0.1);
  border-color: rgba(19, 195, 232, 0.35);
}

.cal-cell--live {
  background: rgba(117, 234, 139, 0.35);
  border-color: var(--brand-02);
  box-shadow: 0 0 0 1px rgba(117, 234, 139, 0.5);
}

.cal-cell--broadcast {
  background: rgba(19, 195, 232, 0.22);
  border-color: var(--brand-01);
}

.cal-cell--imhw.cal-cell--broadcast {
  border-color: var(--brand-01);
  box-shadow: 0 0 0 1px rgba(19, 195, 232, 0.45);
}

.cal-cell--webinar {
  align-items: stretch;
  justify-content: flex-start;
  min-height: 4.35rem;
  padding: 0 0.25rem 0.2rem 0.35rem;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  flex-direction: column;
  gap: 0.1rem;
  overflow: visible;
  box-shadow: 0 2px 10px rgba(19, 75, 150, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 0;
}

.cal-cell--webinar:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(19, 75, 150, 0.16);
  z-index: 1;
}

.cal-webinar-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1.2rem;
  text-align: center;
  color: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.cal-webinar-title {
  flex: 1;
  display: block;
  padding: 1.35rem 0.1rem 0.15rem 0.05rem;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.18;
  text-align: left;
  letter-spacing: 0.02em;
  color: var(--brand-00);
}

.cal-webinar-day {
  align-self: flex-end;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  padding: 0 0.1rem 0.1rem 0;
}

.cal-cell--webinar-1 {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(19, 195, 232, 0.24) 100%);
  border-color: rgba(19, 195, 232, 0.85);
}

.cal-cell--webinar-1 .cal-webinar-badge {
  background: linear-gradient(145deg, #1ad4f5, #0ea5c9);
}

.cal-cell--webinar-1 .cal-webinar-day {
  color: #0a7a94;
}

.cal-cell--webinar-2 {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(29, 75, 150, 0.16) 100%);
  border-color: rgba(29, 75, 150, 0.55);
}

.cal-cell--webinar-2 .cal-webinar-badge {
  background: linear-gradient(145deg, #3a6bb8, #1d4b96);
}

.cal-cell--webinar-2 .cal-webinar-day {
  color: var(--brand-03);
}

.cal-cell--webinar-3 {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(39, 168, 195, 0.22) 100%);
  border-color: rgba(39, 168, 195, 0.75);
}

.cal-cell--webinar-3 .cal-webinar-badge {
  background: linear-gradient(145deg, #4ac4d4, #27a8c3);
}

.cal-cell--webinar-3 .cal-webinar-day {
  color: #1a7d8f;
}

.cal-cell--webinar-4 {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(117, 234, 139, 0.38) 100%);
  border-color: rgba(90, 190, 110, 0.75);
}

.cal-cell--webinar-4 .cal-webinar-badge {
  background: linear-gradient(145deg, #8aed9e, #4cb868);
}

.cal-cell--webinar-4 .cal-webinar-day {
  color: #2a7a45;
}

.cal-cell-label {
  position: absolute;
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
  left: 4px;
  bottom: 3px;
  right: 2px;
  color: var(--brand-00);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cal-session-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.45rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  vertical-align: middle;
  line-height: 1;
}

.cal-schedule-item--webinar {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(19, 75, 150, 0.07);
  background: linear-gradient(180deg, var(--white) 0%, rgba(249, 250, 251, 0.85) 100%);
}

.cal-schedule-item--webinar-1 {
  border-left: 5px solid #13c3e8;
}

.cal-schedule-item--webinar-1 .cal-session-pill {
  background: linear-gradient(145deg, #1ad4f5, #0ea5c9);
}

.cal-schedule-item--webinar-2 {
  border-left: 5px solid #1d4b96;
}

.cal-schedule-item--webinar-2 .cal-session-pill {
  background: linear-gradient(145deg, #3a6bb8, #1d4b96);
}

.cal-schedule-item--webinar-3 {
  border-left: 5px solid #27a8c3;
}

.cal-schedule-item--webinar-3 .cal-session-pill {
  background: linear-gradient(145deg, #4ac4d4, #27a8c3);
}

.cal-schedule-item--webinar-4 {
  border-left: 5px solid #5cb87a;
}

.cal-schedule-item--webinar-4 .cal-session-pill {
  background: linear-gradient(145deg, #8aed9e, #4cb868);
}

.cal-schedule-item--webinar .cal-schedule-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .cal-cell--webinar:hover {
    transform: none;
  }
}

.cal-month-foot {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.4;
}

.cal-schedule {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cal-schedule-item {
  display: grid;
  grid-template-columns: minmax(0, 140px) 1fr;
  gap: 1rem 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  background: var(--white);
  align-items: start;
}

.cal-schedule-item time {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-03);
  display: block;
}

.cal-schedule-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--brand-00);
}

.cal-schedule-item .cal-schedule-meta {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.35rem;
}

.cal-schedule-head {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-00);
  margin: 0 0 0.25rem;
}

.cal-note {
  margin: 0;
  padding: 1rem 1.25rem;
  background: rgba(19, 195, 232, 0.08);
  border-left: 4px solid var(--brand-01);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .event-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .publication-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .tier-card--featured {
    transform: none;
    order: -1;
  }

  .logo {
    max-width: 160px;
  }

  .cal-bimonth {
    grid-template-columns: 1fr;
  }

  .cal-schedule-item {
    grid-template-columns: 1fr;
  }

  .cal-cell-label {
    font-size: 0.5rem;
  }

  .cal-webinar-title {
    font-size: 0.52rem;
  }

  .cal-webinar-day {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .highlights-grid,
  .campaign-pillars,
  .visibility-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Sponsor film video ── */
.video-showcase {
  max-width: 800px;
  margin: 2.5rem auto 0;
}

.video-showcase--inline {
  background: linear-gradient(135deg, var(--brand-00) 0%, #1a3a5c 100%);
  border-radius: 14px;
  padding: 2rem 2rem 1.5rem;
  margin: 2rem 0;
  max-width: 100%;
}

.video-intro {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  margin: 0 0 1.25rem;
  font-weight: 600;
  text-align: center;
}

.video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-play-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}

.video-play-btn svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s ease;
}

.video-play-btn:hover svg {
  transform: scale(1.12);
}

.video-caption {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.video-caption strong {
  color: var(--brand-01);
}

.video-showcase--inline .video-container {
  max-width: 720px;
  margin: 0 auto;
}

/* ── Publication showcase ── */
.pub-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin: 2.5rem 0;
  background: var(--white);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(19, 41, 75, 0.08);
  border: 1px solid var(--gray-200);
}

.pub-showcase-image {
  text-align: center;
}

.pub-showcase-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.pub-showcase-details h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-00);
  margin: 0 0 0.75rem;
}

.pub-tagline {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.pub-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.pub-highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.pub-highlights li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--brand-04);
  font-weight: 700;
}

.pub-editorial-note {
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.pub-editorial-note:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .pub-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pub-highlights {
    text-align: left;
  }
}

/* ── Tier toggle (new client / existing subscriber) ── */
.tier-toggle {
  margin: 0 0 0.5rem;
  padding: 0 1.5rem;
}

.tier-toggle-btns {
  display: flex;
  background: linear-gradient(135deg, #e8f4f8 0%, #f0e6f6 100%);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 0.75rem;
}

.tier-toggle-btn {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-400);
  cursor: pointer;
  transition: all 0.25s ease;
}

.tier-toggle-btn[data-target="new"].active {
  background: linear-gradient(135deg, var(--brand-04) 0%, #2bb5a0 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(39, 168, 195, 0.35);
}

.tier-toggle-btn[data-target="existing"].active {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.35);
}

.tier-toggle-btn:hover:not(.active) {
  color: var(--brand-00);
  background: rgba(255, 255, 255, 0.6);
}

.tier-toggle-panel {
  display: none;
}

.tier-toggle-panel.active {
  display: block;
}

.tier-toggle-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-04);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.tier-sub-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.4rem 0 0;
}

.tier-sub-list li {
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
  padding-left: 0;
}

.tier-sub-list li::before {
  display: none;
}
