/*
Theme Name: WECON Theme
Theme URI: https://www.wecon.pk
Author: WECON / Change Mechanics Pvt. Ltd.
Author URI: https://www.wecon.pk
Description: A custom WordPress theme for WECON — Pakistan's Women Entrepreneurship Movement. Editorial energy design with movement poster meets fashion magazine aesthetics.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wecon
Tags: one-page, custom-menu, custom-logo, featured-images, theme-options
*/

/* ═══════════════════════════════════════════
   WECON.PK — Editorial Energy System
   Concept: Movement poster meets fashion magazine
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --charcoal: #2D2D2D;
  --dark: #1A1A1A;
  --magenta: #C41F6E;
  --magenta-bright: #E8266E;
  --magenta-glow: rgba(196,31,110,0.15);
  --orange: #E8713D;
  --orange-hot: #FF8A50;
  --cream: #FFF9F3;
  --cream-dark: #F5EDE3;
  --gold: #D4A843;
  --ink: #1A1714;
  --mid: #7A7067;
  --light: #B5ADA4;
  --border: #E8E0D6;
  --white: #FFFFFF;

  --display: 'Outfit', sans-serif;
  --mega: 'Bebas Neue', 'Impact', sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --body: 'DM Sans', system-ui, sans-serif;
}

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--body); cursor: pointer; border: none; }

/* ── SCROLL ANIMATIONS ── */
.r { opacity: 0; transform: translateY(40px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.r.v { opacity: 1; transform: none; }
.r-d1 { transition-delay: 0.1s; }
.r-d2 { transition-delay: 0.2s; }
.r-d3 { transition-delay: 0.3s; }
.r-d4 { transition-delay: 0.4s; }
.r-d5 { transition-delay: 0.5s; }
.r-left { transform: translateX(-60px); }
.r-left.v { transform: none; }
.r-right { transform: translateX(60px); }
.r-right.v { transform: none; }
.r-scale { transform: scale(0.9); }
.r-scale.v { transform: none; }

/* ═══════════════════════════════════
   TICKER BAR
   ═══════════════════════════════════ */
.ticker {
  background: var(--dark);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--magenta);
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: scroll-left 25s linear infinite;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ticker-track span { display: flex; align-items: center; gap: 12px; }
.ticker-track .sep { color: var(--magenta); font-size: 16px; }
.ticker-track strong { color: var(--magenta-bright); }
@keyframes scroll-left { from{transform:translateX(0)} to{transform:translateX(var(--ticker-end, -50%))} }

/* ═══════════════════════════════════
   NAV
   ═══════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(255,249,243,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 40px rgba(0,0,0,0.06); }
.nav-logo { font-family: var(--display); font-size: 20px; font-weight: 800; color: var(--charcoal); letter-spacing: -0.5px; }
.nav-logo img, .custom-logo { height: 36px; width: auto; }
.nav-logo span { color: var(--magenta); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .current-menu-item a,
.nav-links .current_page_item a { color: var(--magenta); }

/* ── DROPDOWN ── */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: 0.5; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: white;
  list-style: none;
  min-width: 200px;
  border-top: 2px solid var(--magenta);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 300;
  padding: 6px 0;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { border-bottom: 1px solid rgba(0,0,0,0.05); }
.nav-dropdown li:last-child { border-bottom: none; }
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 11px;
  color: var(--charcoal) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.nav-dropdown a:hover { color: var(--magenta) !important; background: rgba(196,31,110,0.04); }
.nav-cta {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--magenta);
  color: white;
  padding: 10px 22px;
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--magenta-bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,31,110,0.3); }
.nav-menu-btn { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-menu-btn span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vh, 140px) clamp(24px, 6vw, 100px);
  overflow: hidden;
  background: var(--cream);
}
.hero-img-strip {
  position: absolute;
  top: -5%; right: -5%;
  width: 55%; height: 110%;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  z-index: 1;
}
.hero-img-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  animation: slowDrift 20s ease-in-out infinite alternate;
}
.hero-img-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--cream) 0%, transparent 35%),
    linear-gradient(to right, var(--cream) 0%, transparent 20%),
    linear-gradient(to top, rgba(26,26,26,0.4) 0%, transparent 30%);
}
@keyframes slowDrift { from{transform:scale(1)} to{transform:scale(1.06)} }

.hero-shape-1 {
  position: absolute; top: 15%; right: 30%;
  width: 120px; height: 120px;
  border: 3px solid var(--magenta); border-radius: 50%;
  opacity: 0.15; animation: float1 8s ease-in-out infinite; z-index: 0;
}
.hero-shape-2 {
  position: absolute; bottom: 20%; right: 15%;
  width: 200px; height: 200px;
  background: var(--magenta-glow); border-radius: 50%;
  filter: blur(60px); animation: float2 10s ease-in-out infinite; z-index: 0;
}
.hero-shape-3 {
  position: absolute; top: 30%; left: 40%;
  width: 80px; height: 80px;
  background: rgba(232,113,61,0.08); border-radius: 50%;
  filter: blur(30px); animation: float1 12s ease-in-out infinite reverse; z-index: 0;
}
@keyframes float1 { 0%,100%{transform:translate(0,0) rotate(0deg)} 50%{transform:translate(-15px,-20px) rotate(180deg)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(20px,-30px)} 66%{transform:translate(-10px,15px)} }

.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--magenta);
  margin-bottom: 28px; animation: fadeSlideUp 0.8s 0.1s both;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--magenta); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }

.hero-mega {
  font-family: var(--mega);
  font-size: clamp(64px, 9vw, 140px);
  font-weight: 400; line-height: 0.95; letter-spacing: 2px;
  text-transform: uppercase; color: var(--charcoal);
  margin-bottom: 8px; animation: fadeSlideUp 0.9s 0.15s both;
}
.hero-mega .stroke { -webkit-text-stroke: 2px var(--charcoal); color: transparent; }
.hero-mega .accent { color: var(--magenta); }
.hero-mega .italic-accent {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--orange); letter-spacing: 0; text-transform: none; font-size: 0.65em;
}

.hero-tagline-block { margin: 32px 0; animation: fadeSlideUp 0.9s 0.25s both; }
.hero-tagline {
  font-family: var(--display); font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 800; letter-spacing: -0.5px; line-height: 1.15;
  padding: 20px 32px; background: var(--dark); color: white;
  display: inline-block; position: relative;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
}
.hero-tagline .pop { color: var(--magenta-bright); }
.hero-tagline-sub {
  display: block; margin-top: 10px;
  font-family: var(--body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-hot);
}

.hero-body {
  font-size: 16px; line-height: 1.75; color: var(--mid);
  max-width: 480px; margin-bottom: 32px;
  animation: fadeSlideUp 0.8s 0.35s both;
}

.hero-actions { display: flex; gap: 14px; align-items: center; animation: fadeSlideUp 0.8s 0.4s both; }

.btn-mag {
  font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--magenta); color: white; padding: 14px 32px;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-mag:hover { background: var(--magenta-bright); transform: translateX(4px); }
.btn-ghost {
  font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--charcoal); padding: 14px 28px;
  border: 2px solid var(--charcoal); transition: all 0.3s;
}
.btn-ghost:hover { background: var(--charcoal); color: white; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   STATS MARQUEE
   ═══════════════════════════════════ */
.stats-marquee { background: var(--magenta); padding: 0; overflow: hidden; position: relative; }
.stats-track { display: flex; animation: scroll-left 20s linear infinite; white-space: nowrap; }
.stats-track-item { display: flex; align-items: center; gap: 14px; padding: 24px 48px; flex-shrink: 0; }
.stats-track-num {
  font-family: var(--mega); font-size: clamp(44px, 5vw, 72px);
  font-weight: 400; color: white; line-height: 1; letter-spacing: 2px;
}
.stats-track-label {
  font-family: var(--display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); max-width: 100px; white-space: normal; line-height: 1.3;
}
.stats-track-sep { font-size: 28px; color: rgba(255,255,255,0.2); padding: 0 12px; }

/* ═══════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════ */
.manifesto {
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 100px);
  background: var(--cream); position: relative; overflow: hidden;
}
.manifesto::before {
  content: 'CLOSING THE GAP'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  font-family: var(--display); font-size: clamp(80px, 12vw, 200px); font-weight: 800;
  color: rgba(196,31,110,0.03); white-space: nowrap; pointer-events: none; letter-spacing: -4px;
}
.manifesto-inner { max-width: 900px; position: relative; z-index: 1; }
.manifesto-label {
  font-family: var(--display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--magenta);
  margin-bottom: 24px; display: flex; align-items: center; gap: 14px;
}
.manifesto-label::before { content: ''; width: 40px; height: 2px; background: var(--magenta); }
.manifesto-heading {
  font-family: var(--mega); font-size: clamp(44px, 6vw, 88px);
  font-weight: 400; line-height: 1; letter-spacing: 1px;
  text-transform: uppercase; color: var(--charcoal); margin-bottom: 28px;
}
.manifesto-heading .serif-it {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--magenta); letter-spacing: 0; text-transform: none;
}
.manifesto-heading .orange { color: var(--orange); text-transform: none; }
.manifesto-body { font-size: 17px; line-height: 1.8; color: var(--mid); max-width: 560px; margin-bottom: 48px; }
.manifesto-stats { display: flex; gap: 48px; padding: 36px 0; border-top: 2px solid var(--dark); border-bottom: 1px solid var(--border); }
.m-stat-num { font-family: var(--mega); font-size: 64px; font-weight: 400; color: var(--charcoal); line-height: 1; letter-spacing: 1px; }
.m-stat-num span { color: var(--magenta); }
.m-stat-label { font-size: 12px; font-weight: 500; color: var(--mid); margin-top: 4px; }

/* ═══════════════════════════════════
   WUSSAT 2026
   ═══════════════════════════════════ */
.wussat {
  position: relative; background: var(--dark); color: white;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  overflow: hidden;
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  margin: -4vw 0; z-index: 2;
}
.wussat::before {
  content: 'WUSSAT'; position: absolute; bottom: -20px; right: -20px;
  font-family: var(--display); font-size: clamp(150px, 18vw, 320px); font-weight: 800;
  color: rgba(255,255,255,0.02); letter-spacing: -8px; line-height: 1; pointer-events: none;
}
.wussat::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--orange), var(--gold), var(--magenta));
  background-size: 200% 100%; animation: shimmer 3s linear infinite;
}
@keyframes shimmer { from{background-position:200% 0} to{background-position:-200% 0} }

.wussat-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1300px; margin: 0 auto; }
.wussat-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-hot);
  padding: 8px 18px; border: 1px solid rgba(232,113,61,0.3); border-radius: 2px; margin-bottom: 24px;
}
.wussat-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
.wussat-title {
  font-family: var(--mega); font-size: clamp(48px, 6vw, 96px);
  font-weight: 400; line-height: 0.95; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.wussat-title .serif-it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--magenta-bright); letter-spacing: 0; text-transform: none; }
.wussat-subtitle { font-family: var(--serif); font-size: 20px; font-style: italic; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.wussat-desc { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.4); max-width: 440px; margin-bottom: 36px; }
.wussat-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.wussat-pill {
  font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  padding: 10px 20px; border: 1px solid rgba(255,255,255,0.1); border-radius: 2px;
  color: rgba(255,255,255,0.6); transition: all 0.3s;
}
.wussat-pill:hover { border-color: var(--magenta); color: var(--magenta-bright); background: rgba(196,31,110,0.08); }
.btn-orange {
  font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--orange); color: white; padding: 14px 32px;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.btn-orange:hover { background: var(--orange-hot); transform: translateX(4px); }

.wussat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; }
.wussat-cards::before {
  content: ''; position: absolute; top: -40px; left: -40px;
  width: 200px; height: 200px; border: 2px solid rgba(196,31,110,0.1); border-radius: 50%; pointer-events: none;
}
.w-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 22px; border-radius: 2px; transition: all 0.4s; position: relative; overflow: hidden;
}
.w-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--magenta);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.w-card:hover::before { transform: scaleX(1); }
.w-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-6px); }
.w-card:nth-child(2) { margin-top: 32px; }
.w-card:nth-child(3) { margin-top: -16px; }
.w-card-icon { font-size: 24px; margin-bottom: 12px; }
.w-card-title { font-family: var(--display); font-size: 14px; font-weight: 700; color: white; margin-bottom: 6px; }
.w-card-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ═══════════════════════════════════
   WE-PORTAL
   ═══════════════════════════════════ */
.portal {
  background: linear-gradient(135deg, var(--orange) 0%, #D45A2A 100%);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 100px);
  color: white; position: relative; overflow: hidden; z-index: 3;
}
.portal::before {
  content: 'WE-PORTAL'; position: absolute; top: 50%; right: -40px;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--display); font-size: 120px; font-weight: 800;
  color: rgba(255,255,255,0.06); white-space: nowrap; letter-spacing: -3px; pointer-events: none;
}
.portal-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; max-width: 1300px; margin: 0 auto; }
.portal-coming {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 10px; font-weight: 800;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 8px 18px; background: rgba(255,255,255,0.15); border-radius: 2px; margin-bottom: 24px;
}
.portal-coming .dot { width: 8px; height: 8px; border-radius: 50%; background: white; animation: pulse 2s infinite; }
.portal-name {
  font-family: var(--mega); font-size: clamp(56px, 8vw, 110px);
  font-weight: 400; letter-spacing: 3px; line-height: 0.9; text-transform: uppercase; margin-bottom: 16px;
}
.portal-tagline-1 { font-family: var(--serif); font-size: 24px; font-style: italic; opacity: 0.85; margin-bottom: 6px; }
.portal-tagline-2 { font-size: 15px; opacity: 0.55; margin-bottom: 36px; line-height: 1.6; }
.portal-notify { display: flex; gap: 0; max-width: 400px; }
.portal-notify input {
  flex: 1; padding: 14px 18px; border: none; border-radius: 2px 0 0 2px;
  background: rgba(255,255,255,0.15); color: white; font-size: 14px; font-family: var(--body); outline: none;
}
.portal-notify input::placeholder { color: rgba(255,255,255,0.35); }
.portal-notify button {
  font-family: var(--display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 24px; background: var(--dark); color: white;
  border-radius: 0 2px 2px 0; transition: background 0.3s; white-space: nowrap;
}
.portal-notify button:hover { background: var(--charcoal); }
.portal-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.p-feat { background: rgba(255,255,255,0.1); padding: 24px 18px; border-radius: 2px; text-align: center; transition: all 0.3s; }
.p-feat:hover { background: rgba(255,255,255,0.2); transform: translateY(-4px); }
.p-feat-icon { font-size: 22px; margin-bottom: 8px; }
.p-feat-title { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 4px; }
.p-feat-desc { font-size: 11px; opacity: 0.5; line-height: 1.5; }

/* ═══════════════════════════════════
   SECTION — Shared editorial styles
   ═══════════════════════════════════ */
.sec-pad { padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px); }
.sec-max { max-width: 1300px; margin: 0 auto; }
.sec-label {
  font-family: var(--display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--magenta);
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.sec-label::before { content: ''; width: 32px; height: 2px; background: var(--magenta); }
.sec-title {
  font-family: var(--mega); font-size: clamp(36px, 5vw, 72px);
  font-weight: 400; line-height: 1; letter-spacing: 1px;
  text-transform: uppercase; color: var(--charcoal); margin-bottom: 14px;
}
.sec-title .serif-it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--magenta); letter-spacing: 0; text-transform: none; }
.sec-title .orange-it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--orange); letter-spacing: 0; text-transform: none; }
.sec-desc { font-size: 15px; line-height: 1.8; color: var(--mid); max-width: 520px; margin-bottom: 48px; }

.dark-sec { background: var(--dark); color: white; }
.dark-sec .sec-label { color: var(--magenta-bright); }
.dark-sec .sec-label::before { background: var(--magenta-bright); }
.dark-sec .sec-title { color: white; }
.dark-sec .sec-desc { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════
   GALLERY
   ═══════════════════════════════════ */
.gallery { padding: clamp(60px, 8vw, 100px) 0; background: var(--cream-dark); overflow: hidden; }
.gallery-header { padding: 0 clamp(24px, 6vw, 100px); margin-bottom: 40px; }
.gallery-reel { display: flex; gap: 16px; animation: scroll-left 40s linear infinite; width: max-content; }
.gallery-reel:hover { animation-play-state: paused; }
.g-item { flex: 0 0 380px; height: 280px; border-radius: 4px; overflow: hidden; position: relative; background: var(--charcoal); }
.g-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); transition: all 0.5s; }
.g-item:hover img { filter: saturate(1.1); transform: scale(1.06); }
.g-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 20px;
}
.g-item:hover .g-item-overlay { opacity: 1; }
.g-item-cap { color: white; font-family: var(--display); font-size: 13px; font-weight: 600; }

/* ═══════════════════════════════════
   CONFERENCES
   ═══════════════════════════════════ */
.conf-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; margin-top: 48px; }
.conf-hero {
  border-radius: 4px; overflow: hidden; position: relative; min-height: 520px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--charcoal); cursor: pointer; transition: transform 0.3s;
}
.conf-hero:hover { transform: translateY(-4px); }
.conf-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8) brightness(0.6); transition: transform 0.6s; }
.conf-hero:hover img { transform: scale(1.04); }
.conf-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.3) 50%, transparent 100%); }
.conf-hero-body { position: relative; z-index: 2; padding: 40px; }
.conf-hero-year { font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--magenta-bright); margin-bottom: 12px; }
.conf-hero-title { font-family: var(--display); font-size: 28px; font-weight: 800; color: white; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 12px; }
.conf-hero-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 400px; }

.conf-list { display: flex; flex-direction: column; gap: 10px; }
.conf-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: center;
  background: white; padding: 20px 22px; border: 1px solid var(--border); border-radius: 2px;
  cursor: pointer; transition: all 0.3s;
}
.conf-item:hover { border-color: var(--magenta); transform: translateX(6px); box-shadow: -4px 0 0 var(--magenta); }
.conf-item-yr { font-family: var(--display); font-size: 28px; font-weight: 800; color: var(--charcoal); line-height: 1; }
.conf-item-name { font-family: var(--display); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.conf-item-det { font-size: 12px; color: var(--mid); }

/* ═══════════════════════════════════
   CONSULTATIVE SESSIONS
   ═══════════════════════════════════ */
.consult-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.cs-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 28px; border-radius: 2px; transition: all 0.4s; position: relative; overflow: hidden;
}
.cs-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--magenta), var(--orange));
  opacity: 0; transition: opacity 0.3s;
}
.cs-card:hover::after { opacity: 1; }
.cs-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-6px); }
.cs-card-yr { font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange-hot); margin-bottom: 14px; }
.cs-card-title { font-family: var(--display); font-size: 20px; font-weight: 800; color: white; letter-spacing: -0.3px; margin-bottom: 12px; }
.cs-card-desc { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; }

/* ═══════════════════════════════════
   INSIGHTS
   ═══════════════════════════════════ */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.ins-card { background: white; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; transition: all 0.4s; cursor: pointer; }
.ins-card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.ins-card-visual { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; }
.ins-card:nth-child(1) .ins-card-visual { background: var(--dark); }
.ins-card:nth-child(2) .ins-card-visual { background: var(--magenta); }
.ins-card:nth-child(3) .ins-card-visual { background: var(--orange); }
.ins-card-visual-icon { font-size: 48px; opacity: 0.25; }
.ins-card-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; background: white; color: var(--charcoal); border-radius: 2px;
}
.ins-card-body { padding: 28px; }
.ins-card-title { font-family: var(--display); font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.25; letter-spacing: -0.3px; margin-bottom: 10px; }
.ins-card-excerpt { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 16px; }
.ins-card-link {
  font-family: var(--display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--magenta);
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s;
}
.ins-card:hover .ins-card-link { gap: 12px; }

/* ═══════════════════════════════════
   EXPO
   ═══════════════════════════════════ */
.expo-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 220px 220px; gap: 10px; margin-top: 48px; }
.expo-tile { border-radius: 2px; overflow: hidden; position: relative; background: rgba(255,255,255,0.06); }
.expo-tile.wide { grid-column: span 2; }
.expo-tile img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); transition: all 0.5s; }
.expo-tile:hover img { filter: saturate(1.1); transform: scale(1.06); }
.expo-cta { text-align: center; margin-top: 48px; }
.btn-outline-w {
  font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 36px; border: 2px solid rgba(255,255,255,0.15); color: white;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.btn-outline-w:hover { background: white; color: var(--dark); border-color: white; }

/* ═══════════════════════════════════
   COMMUNITY
   ═══════════════════════════════════ */
.community-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto; gap: 16px; margin-top: 48px; }
.c-card {
  background: white; border: 1px solid var(--border); border-radius: 2px;
  padding: 32px 24px; transition: all 0.4s; position: relative; overflow: hidden;
}
.c-card:hover { border-color: var(--magenta); transform: translateY(-6px); }
.c-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--magenta); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.c-card:hover::before { transform: scaleX(1); }
.c-card:nth-child(2)::before { background: var(--orange); }
.c-card:nth-child(2):hover { border-color: var(--orange); }
.c-card:nth-child(3)::before { background: var(--gold); }
.c-card:nth-child(3):hover { border-color: var(--gold); }
.c-card-icon { font-size: 28px; margin-bottom: 16px; }
.c-card-title { font-family: var(--display); font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.3px; margin-bottom: 8px; }
.c-card-desc { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ═══════════════════════════════════
   ACTIVITIES
   ═══════════════════════════════════ */
.act-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; margin-top: 48px; }
.act-list { display: flex; flex-direction: column; gap: 10px; }
.act-row {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 18px; align-items: center;
  background: white; border: 1px solid var(--border); border-radius: 2px;
  padding: 18px 22px; cursor: pointer; transition: all 0.3s;
}
.act-row:hover { border-color: var(--magenta); transform: translateX(6px); box-shadow: -4px 0 0 var(--magenta); }
.act-date { text-align: center; }
.act-month { font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--magenta); }
.act-day { font-family: var(--display); font-size: 28px; font-weight: 800; color: var(--charcoal); line-height: 1; }
.act-title { font-family: var(--display); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.act-sub { font-size: 12px; color: var(--mid); }
.act-badge {
  font-family: var(--display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 2px; white-space: nowrap;
}
.badge-lab { background: var(--magenta-glow); color: var(--magenta); }
.badge-mentors { background: rgba(232,113,61,0.1); color: var(--orange); }
.badge-round { background: rgba(212,168,67,0.1); color: #9a7820; }
.badge-conf { background: rgba(45,45,45,0.06); color: var(--charcoal); }

.nl-card { background: var(--dark); border-radius: 2px; padding: 36px 28px; position: sticky; top: 100px; }
.nl-label { font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--magenta-bright); margin-bottom: 14px; }
.nl-title { font-family: var(--display); font-size: 24px; font-weight: 800; color: white; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 12px; }
.nl-body { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 24px; }
.nl-input {
  width: 100%; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04); color: white; font-size: 13px;
  font-family: var(--body); border-radius: 2px; margin-bottom: 8px; outline: none; transition: border-color 0.3s;
}
.nl-input:focus { border-color: var(--magenta); }
.nl-input::placeholder { color: rgba(255,255,255,0.2); }
.nl-btn {
  width: 100%; padding: 13px; background: var(--magenta); color: white;
  font-family: var(--display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; transition: background 0.3s;
}
.nl-btn:hover { background: var(--magenta-bright); }

/* ═══════════════════════════════════
   BLOGS
   ═══════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; margin-top: 48px; }
.blog-card {
  background: white; border: 1px solid var(--border); border-radius: 2px;
  overflow: hidden; cursor: pointer; transition: all 0.4s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.08); }
.blog-card:first-child { grid-row: span 2; }
.blog-card:first-child .blog-img { height: 300px; }
.blog-img { height: 180px; overflow: hidden; position: relative; background: var(--charcoal); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-cat {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; background: var(--magenta); color: white; border-radius: 2px;
}
.blog-body { padding: 24px; }
.blog-title { font-family: var(--display); font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.25; letter-spacing: -0.3px; margin-bottom: 10px; }
.blog-card:first-child .blog-title { font-size: 24px; }
.blog-excerpt { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
.blog-meta { font-size: 12px; color: var(--light); display: flex; gap: 10px; }
.blog-more { text-align: center; margin-top: 48px; }

/* ═══════════════════════════════════
   PARTNERSHIPS
   ═══════════════════════════════════ */
.cta-section {
  background: var(--dark);
  padding: clamp(100px, 12vw, 160px) clamp(24px, 6vw, 100px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,31,110,0.08) 0%, transparent 60%);
}
.cta-section .sec-label { justify-content: center; color: var(--magenta-bright); }
.cta-section .sec-label::before { background: var(--magenta-bright); }
.cta-section .sec-title { color: white; text-align: center; margin-left: auto; margin-right: auto; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 540px; margin: 0 auto 28px; }
.cta-partners { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 48px; }
.cta-partner {
  font-family: var(--display); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.12); text-transform: uppercase; letter-spacing: 0.06em; transition: color 0.3s;
}
.cta-partner:hover { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.site-footer {
  background: var(--dark); color: white;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px clamp(24px, 6vw, 100px) 36px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  max-width: 1300px; margin: 0 auto; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.foot-brand { font-family: var(--display); font-size: 28px; font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.foot-brand span { color: var(--magenta); }
.foot-about { font-size: 14px; color: rgba(255,255,255,0.3); line-height: 1.75; max-width: 280px; margin-bottom: 18px; }
.foot-socials { display: flex; gap: 8px; }
.foot-social {
  width: 34px; height: 34px; border-radius: 4px; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.foot-social:hover { background: var(--magenta); }
.foot-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.35); }
.foot-social:hover svg { fill: white; }
.foot-col h4 {
  font-family: var(--display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--magenta-bright); margin-bottom: 18px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.foot-col a { font-size: 14px; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.foot-col a:hover { color: white; }
.foot-bottom {
  max-width: 1300px; margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.18);
}
.foot-bottom a { color: rgba(255,255,255,0.25); transition: color 0.3s; }
.foot-bottom a:hover { color: white; }

/* ═══════════════════════════════════
   WORDPRESS OVERRIDES
   ═══════════════════════════════════ */
.wp-block-image img { max-width: 100%; height: auto; }
.entry-content { max-width: 800px; margin: 0 auto; padding: 60px clamp(24px, 6vw, 100px); }
.entry-content h1, .entry-content h2, .entry-content h3 { font-family: var(--display); color: var(--charcoal); }
.entry-content p { font-size: 16px; line-height: 1.8; color: var(--mid); margin-bottom: 24px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-img-strip { width: 50%; clip-path: polygon(25% 0, 100% 0, 100% 100%, 5% 100%); }
  .wussat-layout { grid-template-columns: 1fr; gap: 48px; }
  .portal-layout { grid-template-columns: 1fr; gap: 48px; }
  .conf-grid { grid-template-columns: 1fr; }
  .consult-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .expo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .community-bento { grid-template-columns: 1fr 1fr; }
  .act-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:first-child { grid-row: span 1; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    z-index: 200;
  }
  .mobile-open .has-dropdown .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--magenta);
    border-radius: 0;
    padding: 4px 0 4px 12px;
    margin: 4px 0 8px;
  }
  .nav-menu-btn { display: block; }
  .hero { min-height: auto; padding-top: 60px; padding-bottom: 60px; }
  .hero-img-strip { position: relative; width: 100%; height: 300px; clip-path: none; top: auto; right: auto; margin-top: 40px; }
  .hero { flex-direction: column; }
  .wussat { clip-path: none; margin: 0; }
  .wussat-cards { grid-template-columns: 1fr; }
  .w-card:nth-child(2), .w-card:nth-child(3) { margin-top: 0; }
  .consult-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .expo-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .expo-tile.wide { grid-column: span 1; }
  .expo-tile { height: 200px; }
  .community-bento { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .g-item { flex: 0 0 280px; height: 220px; }
  .manifesto-stats { flex-wrap: wrap; gap: 24px; }
  .hero-actions { flex-wrap: wrap; }
  .portal-feats { grid-template-columns: 1fr 1fr; }
  .portal-notify { flex-direction: column; }
  .portal-notify input { border-radius: 2px; }
  .portal-notify button { border-radius: 2px; }
  .act-row { grid-template-columns: 60px 1fr; }
  .act-badge { display: none; }
  .cta-partners { gap: 18px; }
}

@media (max-width: 480px) {
  .hero-mega { font-size: 40px; letter-spacing: -1.5px; }
  .hero-tagline { font-size: 16px; padding: 16px 20px; }
  .stat-track-num { font-size: 32px; }
  .portal-feats { grid-template-columns: 1fr; }
}
