/* ===== CSS VARIABLES ===== */
:root {
  --white: #FFFFFF; --off-white: #F5F5F7; --light-gray: #E8E8EC; --mid-gray: #B8B8C0;
  --dark-gray: #3A3A42; --black: #1A1A1E; --cyan: #00D4FF; --blue: #0066FF;
  --red: #FF4040; --pink: #FF80BF;
  --font-display: 'Saira', sans-serif; --font-jp: 'IBM Plex Sans JP', sans-serif;
  --radius: 16px; --radius-sm: 10px; --radius-lg: 24px; --max-width: 1240px; --header-h: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-display); color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 20px; }
.section-title .accent { color: var(--blue); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 60px; font-weight: 600; font-size: 14px; letter-spacing: 0.3px; transition: all 0.3s ease; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--off-white); }
.btn svg { width: 16px; height: 16px; }
.empty-state { font-size: 15px; color: var(--mid-gray); padding: 48px 0; text-align: center; }
.tag-inline { display: inline-block; background: var(--off-white); padding: 4px 10px; border-radius: 60px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--dark-gray); }

/* ===== FADE-IN ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h); background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 36px; height: 28px; display: flex; flex-direction: column; gap: 2px; }
.logo-mark span { display: block; height: 100%; border-radius: 3px; border: 2.5px solid var(--black); }
.logo-mark span:first-child { border-radius: 3px 3px 3px 0; height: 5px; border: none; background: var(--black); }
.logo-text { font-size: 15px; font-weight: 700; letter-spacing: 1.5px; line-height: 1.2; text-transform: uppercase; }
.logo-text small { font-size: 10px; font-weight: 500; letter-spacing: 0.5px; color: var(--mid-gray); display: block; text-transform: none; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 15px; font-weight: 500; letter-spacing: 0.2px; color: var(--dark-gray); transition: color 0.2s; position: relative; }
.nav a:hover, .nav a.active { color: var(--black); }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--blue); transition: width 0.3s; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; gap: 2px; background: var(--off-white); border-radius: 8px; padding: 3px; }
.lang-switch a, .lang-switch button { padding: 5px 10px; font-size: 11px; font-weight: 600; border-radius: 6px; color: var(--mid-gray); transition: all 0.2s; letter-spacing: 0.5px; }
.lang-switch a.active, .lang-switch button.active { background: var(--white); color: var(--black); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.header-cta { padding: 10px 24px; background: var(--black); color: var(--white); font-size: 14px; font-weight: 600; border-radius: 60px; letter-spacing: 0.3px; transition: background 0.3s; }
.header-cta:hover { background: var(--blue); }
.header-cta--red { background: var(--red); }
.header-cta--red:hover { background: #e63636; }
.mobile-toggle { display: none; width: 28px; height: 20px; flex-direction: column; justify-content: space-between; }
.mobile-toggle span { display: block; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; }
.mobile-menu.open { display: block; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--white); padding: 32px; z-index: 999; }
.mobile-nav { display: flex; flex-direction: column; gap: 16px; }
.mobile-nav a { font-size: 18px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--light-gray); }

/* ===== HERO ===== */
.hero { margin-top: var(--header-h); position: relative; overflow: hidden; min-height: 85vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--black) 0%, #2A2A32 100%); }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%; background: radial-gradient(ellipse, rgba(0,102,255,0.12) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -20%; left: -10%; width: 50%; height: 80%; background: radial-gradient(ellipse, rgba(0,212,255,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: var(--max-width); margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-content { color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 8px 16px; border-radius: 60px; font-size: 12px; font-weight: 500; color: var(--cyan); margin-bottom: 32px; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(30px, 3.6vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin-bottom: 28px; }
.hero p { font-size: 16px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.65); max-width: 560px; margin-bottom: 20px; }
.hero p:last-of-type { margin-bottom: 40px; }
.hero p strong { font-weight: 600; color: rgba(255,255,255,0.85); }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%); border: 1px solid rgba(255,255,255,0.08); }
.hero-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 120px; color: rgba(255,255,255,0.03); font-weight: 900; }

/* ===== HIGHLIGHTS (3 horizontal cards) ===== */
.highlights { padding: 80px 0; background: var(--white); }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.highlight-card { background: var(--off-white); border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.highlight-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.highlight-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; }
.highlight-card:nth-child(1)::before { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.highlight-card:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), #4D7FFF); }
.highlight-card:nth-child(3)::before { background: linear-gradient(90deg, var(--red), var(--pink)); }
.highlight-icon { width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.highlight-icon--cyan { background: rgba(0,212,255,0.1); }
.highlight-icon--blue { background: rgba(0,102,255,0.1); }
.highlight-icon--red { background: rgba(255,64,64,0.1); }
.highlight-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.highlight-card p { font-size: 16px; color: var(--dark-gray); line-height: 1.7; font-weight: 300; }

/* ===== PILLARS (3+2 layout) ===== */
.pillars { padding: 100px 0; background: var(--off-white); }
.pillars-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.pillars-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.pillars-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pillar-card-lg { background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; border: 1px solid transparent; }
.pillar-card-lg:hover { transform: translateY(-4px); border-color: var(--light-gray); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.pillar-graphic { width: 100%; height: 120px; border-radius: 16px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.pillar-graphic--cyan { background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(0,212,255,0.03) 100%); }
.pillar-graphic--blue { background: linear-gradient(135deg, rgba(0,102,255,0.08) 0%, rgba(0,102,255,0.03) 100%); }
.pillar-graphic--dark { background: linear-gradient(135deg, rgba(58,58,66,0.06) 0%, rgba(58,58,66,0.02) 100%); }
.pillar-graphic--red { background: linear-gradient(135deg, rgba(255,64,64,0.08) 0%, rgba(255,64,64,0.03) 100%); }
.pillar-graphic--pink { background: linear-gradient(135deg, rgba(255,128,191,0.08) 0%, rgba(255,128,191,0.03) 100%); }
.pillar-num-lg { position: absolute; top: 16px; right: 20px; font-size: 12px; font-weight: 700; color: var(--light-gray); letter-spacing: 1px; }
.pillar-card-lg h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.pillar-card-lg p { font-size: 16px; color: var(--dark-gray); line-height: 1.65; font-weight: 300; }
/* Old pillar grid (used on /focus page) */
.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pillar-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; border: 1px solid transparent; }
.pillar-card:hover { transform: translateY(-4px); border-color: var(--light-gray); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.pillar-icon { width: 72px; height: 72px; border-radius: 18px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.pillar-card:nth-child(1) .pillar-icon { background: rgba(0,212,255,0.1); }
.pillar-card:nth-child(2) .pillar-icon { background: rgba(0,102,255,0.1); }
.pillar-card:nth-child(3) .pillar-icon { background: rgba(255,64,64,0.1); }
.pillar-card:nth-child(4) .pillar-icon { background: rgba(255,128,191,0.1); }
.pillar-card:nth-child(5) .pillar-icon { background: rgba(0,102,255,0.08); }
.pillar-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.pillar-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 300; }
.pillar-card .pillar-num { position: absolute; top: 12px; right: 16px; font-size: 11px; font-weight: 700; color: var(--light-gray); letter-spacing: 1px; }

/* ===== FOUNDERS ===== */
.founders { padding: 100px 0; background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.founders::before { content: '2026'; position: absolute; top: 50%; right: -2%; transform: translateY(-50%); font-size: 280px; font-weight: 900; color: rgba(255,255,255,0.02); letter-spacing: -10px; pointer-events: none; }
.founders-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.founders-content .kicker, .kicker { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.founders-content h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.founders-content .subtitle { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.6); margin-bottom: 32px; line-height: 1.6; }
.deadline { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,64,64,0.15); border: 1px solid rgba(255,64,64,0.3); padding: 10px 20px; border-radius: 60px; font-size: 13px; font-weight: 600; color: var(--red); margin-bottom: 32px; }
.founders-perks { display: flex; flex-direction: column; gap: 16px; }
.perk { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 20px; border: 1px solid rgba(255,255,255,0.06); }
.perk-check { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: rgba(0,212,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--cyan); margin-top: 2px; }
.perk h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.perk p { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.5; }
.founders-banner { background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 48px; }
.founders-banner-content { max-width: 640px; }
.founders-banner-content h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; }
.founders-banner-content p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 24px; }

/* ===== NEWS ===== */
.news, .news-section { padding: 100px 0; background: var(--white); }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.news-header .section-title { margin-bottom: 0; }
.news-carousel, .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { border-radius: var(--radius); overflow: hidden; background: var(--off-white); transition: all 0.3s; border: 1px solid transparent; display: block; }
.news-card:hover { transform: translateY(-3px); border-color: var(--light-gray); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.news-thumb { height: 180px; background: linear-gradient(135deg, var(--light-gray) 0%, var(--mid-gray) 100%); position: relative; overflow: hidden; background-size: cover; background-position: center; }
.news-thumb .tag { position: absolute; top: 16px; left: 16px; background: var(--white); padding: 5px 12px; border-radius: 60px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; }
.news-body { padding: 24px; }
.news-date { font-size: 12px; color: var(--mid-gray); font-weight: 500; margin-bottom: 8px; }
.news-card h3 { font-size: 16px; font-weight: 600; line-height: 1.4; margin-bottom: 10px; }
.news-card p { font-size: 13px; color: var(--dark-gray); line-height: 1.6; font-weight: 300; }

/* ===== PAGE HERO ===== */
.page-hero { margin-top: var(--header-h); padding: 80px 0 60px; background: var(--off-white); }
.page-hero--light { background: var(--off-white); }
.page-title { font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; }
.page-title .accent { color: var(--blue); }
.page-subtitle { font-size: 17px; color: var(--dark-gray); font-weight: 300; line-height: 1.65; max-width: 640px; }
.breadcrumb { font-size: 13px; color: var(--mid-gray); margin-bottom: 16px; display: inline-block; transition: color 0.2s; }
.breadcrumb:hover { color: var(--blue); }

/* ===== CONTENT PAGES ===== */
.content-section { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; }
.content-main { line-height: 1.8; }
.content-main h2 { font-size: 24px; font-weight: 700; margin: 40px 0 16px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 20px; font-weight: 600; margin: 32px 0 12px; }
.content-main p { font-size: 16px; color: var(--dark-gray); margin-bottom: 16px; font-weight: 300; }
.content-main ul, .content-main ol { margin: 16px 0; padding-left: 24px; }
.content-main li { font-size: 16px; color: var(--dark-gray); margin-bottom: 8px; font-weight: 300; list-style: disc; }
.content-main img { border-radius: var(--radius); margin: 24px 0; }
.content-hero-img { width: 100%; border-radius: var(--radius); margin-bottom: 32px; }
.content-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--off-white); border-radius: var(--radius); padding: 28px; }
.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.sidebar-link { display: block; font-size: 14px; color: var(--dark-gray); padding: 6px 0; transition: color 0.2s; }
.sidebar-link:hover { color: var(--blue); }
.value-list { list-style: none; padding: 0; }
.value-list li { font-size: 14px; color: var(--dark-gray); padding: 8px 0; border-bottom: 1px solid var(--light-gray); line-height: 1.5; font-weight: 300; }
.value-list li:last-child { border-bottom: none; }
.value-list li strong { font-weight: 600; color: var(--black); }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { text-align: center; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--blue); display: block; }
.stat-label { font-size: 12px; color: var(--mid-gray); font-weight: 400; }
.member-list { display: flex; flex-direction: column; gap: 8px; }
.member-list-item { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; transition: color 0.2s; }
.member-list-item:hover { color: var(--blue); }
.member-list-item img { width: 28px; height: 28px; object-fit: contain; border-radius: 4px; }
.doc-list { display: flex; flex-direction: column; gap: 8px; }
.doc-item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px; transition: background 0.2s; }
.doc-item:hover { background: var(--white); }
.doc-icon { font-size: 20px; }
.doc-name { font-size: 13px; font-weight: 500; }
.doc-meta { font-size: 11px; color: var(--mid-gray); }

/* ===== TEAM ===== */
.team-section { padding: 80px 0; background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.team-card { text-align: center; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px; background: var(--light-gray); background-size: cover; background-position: center; }
.team-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--mid-gray); }

/* ===== MEMBERSHIP ===== */
.membership-plans { padding: 80px 0; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plan-card { background: var(--off-white); border-radius: var(--radius); padding: 32px; position: relative; border: 2px solid transparent; transition: all 0.3s; }
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.plan-card--featured { border-color: var(--blue); background: var(--white); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); padding: 4px 16px; border-radius: 60px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.plan-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.plan-price { font-size: 28px; font-weight: 800; color: var(--blue); margin-bottom: 16px; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--mid-gray); }
.plan-card p { font-size: 13px; color: var(--dark-gray); line-height: 1.6; font-weight: 300; }
.directory-section { padding: 80px 0; background: var(--off-white); }
.directory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.directory-card { background: var(--white); border-radius: var(--radius); padding: 24px; text-align: center; transition: all 0.3s; border: 1px solid transparent; }
.directory-card:hover { border-color: var(--light-gray); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.directory-logo { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.directory-logo img { max-height: 48px; max-width: 120px; object-fit: contain; }
.directory-logo span { font-size: 28px; font-weight: 800; color: var(--light-gray); }
.directory-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.directory-cat { font-size: 11px; color: var(--mid-gray); }
.member-hero { display: flex; align-items: center; gap: 24px; }
.member-hero-logo { max-height: 60px; max-width: 200px; }

/* ===== WORKING GROUPS ===== */
.wg-section { padding: 80px 0; }
.wg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.wg-card { border-radius: var(--radius); overflow: hidden; background: var(--off-white); transition: all 0.3s; border: 1px solid transparent; display: block; }
.wg-card:hover { border-color: var(--light-gray); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.wg-thumb { height: 160px; background: linear-gradient(135deg, var(--light-gray), var(--mid-gray)); background-size: cover; background-position: center; }
.wg-body { padding: 24px; }
.wg-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.wg-body p { font-size: 14px; color: var(--dark-gray); line-height: 1.6; font-weight: 300; }
.wg-members-preview { display: flex; align-items: center; gap: 4px; margin-top: 16px; }
.wg-member-avatar { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--white); object-fit: contain; background: var(--white); }
.wg-more { font-size: 12px; color: var(--mid-gray); margin-left: 4px; }

/* ===== EVENTS ===== */
.events-section { padding: 80px 0; }
.events-section--past { background: var(--off-white); }
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-row { display: flex; gap: 24px; align-items: center; background: var(--off-white); border-radius: var(--radius); padding: 24px; transition: all 0.3s; border: 1px solid transparent; }
.event-row:hover { border-color: var(--light-gray); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.event-date-block { text-align: center; min-width: 70px; }
.event-day { font-size: 28px; font-weight: 800; color: var(--blue); display: block; line-height: 1; }
.event-month { font-size: 13px; font-weight: 600; text-transform: uppercase; color: var(--dark-gray); }
.event-year { font-size: 11px; color: var(--mid-gray); }
.event-info { flex: 1; }
.event-info h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.event-info p { font-size: 14px; color: var(--dark-gray); font-weight: 300; margin-bottom: 8px; }
.event-meta { display: flex; gap: 12px; font-size: 13px; color: var(--mid-gray); }
.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 48px; }
.pagination-info { font-size: 13px; color: var(--mid-gray); }

/* ===== FOOTER ===== */
.footer { background: var(--off-white); border-top: 1px solid var(--light-gray); }
.footer-partners { padding: 48px 0; border-bottom: 1px solid var(--light-gray); overflow: hidden; }
.partners-overflow { overflow: hidden; }
.partners-track { display: flex; gap: 48px; animation: scroll-logos 25s linear infinite; }
@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.partner-logo { min-width: 140px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: var(--radius-sm); padding: 12px 24px; border: 1px solid var(--light-gray); font-size: 13px; font-weight: 600; color: var(--mid-gray); letter-spacing: 0.5px; white-space: nowrap; }
.partner-logo img { max-height: 32px; max-width: 120px; object-fit: contain; }
.footer-newsletter { padding: 56px 0; border-bottom: 1px solid var(--light-gray); text-align: center; }
.footer-newsletter h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.footer-newsletter p { font-size: 14px; color: var(--dark-gray); font-weight: 300; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 8px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 20px; border: 1.5px solid var(--light-gray); border-radius: 60px; font-family: var(--font-display); font-size: 14px; background: var(--white); outline: none; transition: border-color 0.3s; }
.newsletter-form input:focus { border-color: var(--blue); }
.newsletter-form button { padding: 14px 28px; background: var(--black); color: var(--white); border-radius: 60px; font-size: 13px; font-weight: 600; transition: background 0.3s; white-space: nowrap; }
.newsletter-form button:hover { background: var(--blue); }
.footer-bottom { padding: 48px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: var(--dark-gray); line-height: 1.65; font-weight: 300; max-width: 280px; margin-top: 16px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 10px; background: var(--white); border: 1px solid var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all 0.2s; }
.footer-socials a:hover { border-color: var(--blue); color: var(--blue); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--dark-gray); font-weight: 400; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--light-gray); font-size: 12px; color: var(--mid-gray); font-weight: 400; }

/* ===== ARTICLE PAGE ===== */
.article-header { margin-top: var(--header-h); padding: 60px 0 40px; background: var(--off-white); }
.article-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.12; letter-spacing: -0.8px; margin-bottom: 16px; max-width: 860px; }
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--mid-gray); }
.article-category { background: var(--red); color: var(--white); padding: 4px 14px; border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.article-date { font-weight: 400; }
.article-author { font-weight: 500; color: var(--dark-gray); }
.article-meta span + span::before { content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--mid-gray); margin-right: 16px; vertical-align: middle; }
.article-meta .article-category + span::before { display: none; }

.article-content { padding: 48px 0 80px; }
.article-body { max-width: 860px; }

/* Excerpt */
.article-excerpt { font-size: 20px; font-weight: 600; line-height: 1.6; color: var(--black); margin-bottom: 36px; }

/* Cover figure */
/* Cover figure */
.article-figure { margin: 0 0 36px; }
.article-figure--cover { margin-bottom: 40px; }
.article-figure--wide { margin-left: -5%; margin-right: -5%; width: 110%; }
.article-figure-img { width: 100%; border-radius: var(--radius); display: block; margin: 0; padding: 0; }
.article-figcaption { display: flex; flex-direction: column; gap: 2px; padding: 6px 4px 8px; font-size: 13px; line-height: 1.5; border-bottom: 1px solid var(--light-gray); }
.figcaption-text { display: block; font-weight: 400; color: var(--dark-gray); font-size: 14px; }
.figcaption-copyright { display: block; font-weight: 300; font-style: italic; font-size: 12px; color: var(--mid-gray); }

/* Body text */
.article-text { font-size: 17px; line-height: 1.85; color: var(--dark-gray); font-weight: 300; }
.article-text h2 { font-size: 24px; font-weight: 700; color: var(--black); margin: 48px 0 16px; }
.article-text h3 { font-size: 20px; font-weight: 600; color: var(--black); margin: 36px 0 12px; }
.article-text p { margin-bottom: 20px; }
.article-text strong { font-weight: 600; color: var(--black); }
.article-text em { font-style: italic; }
.article-text a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.article-text a:hover { color: var(--black); }
.article-text ul, .article-text ol { margin: 20px 0; padding-left: 24px; }
.article-text li { margin-bottom: 10px; }
.article-text blockquote { border-left: 4px solid var(--blue); margin: 32px 0; padding: 16px 24px; background: var(--off-white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--dark-gray); }
/* Images inserted in WYSIWYG body */
.article-text figure.article-figure { margin: 36px 0; }
.article-text figure.article-figure .article-figure-img { margin: 0; padding: 0; }
.article-text figure:not(.article-figure) { margin: 36px 0; }
.article-text figure:not(.article-figure) img { width: 100%; border-radius: var(--radius); display: block; }
.article-text figcaption:not(.article-figcaption) { padding: 6px 4px 8px; font-size: 14px; color: var(--dark-gray); border-bottom: 1px solid var(--light-gray); }
.article-text img { border-radius: var(--radius); margin: 24px 0; max-width: 100%; }

/* Gallery — horizontal scroll */
.article-gallery { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--light-gray); }
.article-gallery h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.gallery-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--light-gray); border-radius: 3px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 3px; }
.gallery-thumb { flex: 0 0 auto; width: 280px; cursor: pointer; scroll-snap-align: start; border-radius: var(--radius-sm); overflow: hidden; }
.gallery-thumb img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; display: block; }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-thumb-caption { padding: 8px 4px; font-size: 12px; color: var(--mid-gray); line-height: 1.4; }

/* Share bar */
.article-share { display: flex; align-items: center; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--light-gray); }
.article-share-label { font-size: 13px; font-weight: 600; color: var(--dark-gray); text-transform: uppercase; letter-spacing: 1px; }
.article-share-links { display: flex; gap: 8px; }
.share-btn { padding: 8px 16px; border-radius: 60px; font-size: 13px; font-weight: 500; border: 1px solid var(--light-gray); color: var(--dark-gray); transition: all 0.2s; }
.share-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* Copyright */
.article-copyright { margin-top: 32px; font-size: 12px; color: var(--mid-gray); font-style: italic; line-height: 1.5; }

/* Republished notice */
.article-source { margin-top: 32px; padding: 16px 20px; background: var(--off-white); border-radius: var(--radius-sm); font-size: 14px; color: var(--dark-gray); line-height: 1.6; }
.article-source a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.article-source a:hover { color: var(--black); }

/* Style for images inserted via WYSIWYG editor */
.content-main figure { margin: 32px 0; }
.content-main figure img { width: 100%; border-radius: var(--radius); }
.content-main figcaption { padding: 10px 4px; font-size: 13px; color: var(--mid-gray); border-bottom: 1px solid var(--light-gray); }

/* ===== ARTICLE GALLERY ===== */
.article-gallery { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--light-gray); }
.article-gallery h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-thumb { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-more-overlay { position: absolute; inset: 0; background: rgba(26,26,30,0.6); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; font-weight: 700; letter-spacing: 0.5px; }

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.95); }
.lightbox.open { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 36px; background: none; border: none; cursor: pointer; z-index: 10; padding: 8px; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 48px; background: none; border: none; cursor: pointer; z-index: 10; padding: 16px; opacity: 0.5; transition: opacity 0.2s; line-height: 1; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-content { max-width: 90vw; max-height: 80vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-content img { max-width: 100%; max-height: 70vh; object-fit: contain; border-radius: 4px; }
.lightbox-caption { color: rgba(255,255,255,0.7); margin-top: 16px; text-align: center; max-width: 700px; line-height: 1.5; display: flex; flex-direction: column; gap: 8px; }
.lightbox-caption-text { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.85); }
.lightbox-caption-copyright { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); font-style: italic; }
.lightbox-counter { position: absolute; bottom: 24px; color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 500; letter-spacing: 1px; }

/* ===== MEMBERSHIP PAGE ===== */
.membership-hero { margin-top: var(--header-h); position: relative; display: flex; flex-direction: column; align-items: center; background: linear-gradient(135deg, var(--black) 0%, #2A2A32 60%, #1a1a2e 100%); overflow: hidden; }
.membership-hero::before { content: ''; position: absolute; top: -30%; right: -15%; width: 70%; height: 160%; background: radial-gradient(ellipse, rgba(0,102,255,0.1) 0%, transparent 70%); pointer-events: none; }
.membership-hero-top { max-width: var(--max-width); margin: 0 auto; padding: 80px 32px 48px; position: relative; z-index: 1; text-align: center; color: var(--white); }
.membership-hero-title { font-size: clamp(32px, 4.5vw, 56px); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; text-transform: uppercase; margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; }
.membership-hero-desc { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 40px; line-height: 1.65; }
.membership-hero-pillars { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 32px 80px; position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.membership-hero-pillar { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 32px; text-align: center; transition: all 0.3s; color: var(--white); }
.membership-hero-pillar:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.mhp-icon { width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.mhp-icon--cyan { background: rgba(0,212,255,0.15); }
.mhp-icon--blue { background: rgba(0,102,255,0.15); }
.mhp-icon--red { background: rgba(255,64,64,0.15); }
.membership-hero-pillar h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.membership-hero-pillar p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; font-weight: 300; }

/* Tier cards - horizontal scroll */
.tier-cards-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; margin-bottom: 40px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.tier-cards-scroll::-webkit-scrollbar { height: 6px; }
.tier-cards-scroll::-webkit-scrollbar-track { background: var(--light-gray); border-radius: 3px; }
.tier-cards-scroll::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 3px; }
.tier-card { flex: 0 0 280px; background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--light-gray); scroll-snap-align: start; display: flex; flex-direction: column; transition: all 0.3s; position: relative; overflow: hidden; }
.tier-card:hover { border-color: var(--blue); box-shadow: 0 12px 32px rgba(0,0,0,0.06); transform: translateY(-3px); }
.tier-card--featured { border-color: var(--blue); border-width: 2px; }
.tier-card--featured::after { content: 'MOST POPULAR'; position: absolute; top: 16px; right: -28px; background: var(--red); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 1px; padding: 3px 32px; transform: rotate(45deg); white-space: nowrap; }
.tier-card-bar { height: 4px; border-radius: 2px; margin-bottom: 20px; }
.tier-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.tier-card-price { font-size: 24px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.tier-card-price span { font-size: 13px; font-weight: 400; color: var(--mid-gray); }
.tier-card-audience { font-size: 11px; color: var(--mid-gray); margin-bottom: 12px; }
.tier-card-desc { font-size: 13px; color: var(--dark-gray); line-height: 1.6; font-weight: 300; margin-bottom: 20px; }

/* Simplified table header */
.membership-benefits .benefits-table thead th { padding: 14px 14px; }
.membership-benefits .th-featured::after { display: none; }

.membership-benefits { padding: 100px 0; background: var(--white); }
.membership-benefits-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.membership-benefits-header p { font-size: 16px; color: var(--dark-gray); font-weight: 300; line-height: 1.65; }
.benefits-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--light-gray); }
.benefits-table { width: 100%; min-width: 960px; border-collapse: collapse; font-size: 14px; }
.benefits-table thead th { padding: 20px 14px 16px; font-weight: 700; font-size: 14px; text-align: center; vertical-align: top; border-bottom: 2px solid var(--light-gray); background: var(--off-white); }
.benefits-table thead th:first-child { text-align: left; width: 240px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--mid-gray); }
.tier-name { display: block; font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.tier-price { display: block; font-size: 17px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.tier-note { display: block; font-size: 10px; font-weight: 400; color: var(--mid-gray); margin-bottom: 8px; }
.tier-desc { display: block; font-size: 11px; font-weight: 300; color: var(--dark-gray); line-height: 1.5; margin-bottom: 10px; max-width: 160px; margin-left: auto; margin-right: auto; }
.th-featured .tier-desc { color: rgba(255,255,255,0.45) !important; }
.tier-apply { display: inline-block; padding: 6px 14px; border-radius: 60px; font-size: 11px; font-weight: 600; letter-spacing: 0.3px; transition: all 0.2s; cursor: pointer; text-decoration: none; }
.tier-apply-dark { background: var(--black); color: var(--white); }
.tier-apply-dark:hover { background: var(--blue); }
.tier-apply-outline { border: 1px solid var(--light-gray); color: var(--dark-gray); background: var(--white); }
.tier-apply-outline:hover { border-color: var(--black); color: var(--black); }
.th-featured { background: var(--black) !important; color: var(--white) !important; position: relative; }
.th-featured .tier-name { color: var(--white) !important; }
.th-featured .tier-price { color: var(--cyan) !important; }
.th-featured .tier-note { color: rgba(255,255,255,0.5) !important; }
.th-featured .tier-apply-dark { background: var(--red); }
.th-featured .tier-apply-dark:hover { background: #e63636; }
.th-featured::after { content: 'MOST POPULAR'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 4px; white-space: nowrap; }
.benefits-table tbody td { padding: 14px 14px; text-align: center; border-bottom: 1px solid var(--light-gray); font-weight: 400; color: var(--dark-gray); }
.benefits-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--black); font-size: 13px; }
.benefits-table tbody tr:last-child td { border-bottom: none; }
.benefits-table tbody tr:hover { background: rgba(0,102,255,0.02); }
.td-featured { background: rgba(26,26,30,0.02); }
.check { color: var(--blue); font-weight: 700; font-size: 16px; }
.dash { color: var(--light-gray); }

.membership-pro { padding: 80px 0; background: var(--off-white); }
.membership-pro-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.membership-pro-header p { font-size: 16px; color: var(--dark-gray); font-weight: 300; }
.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.pro-card { background: var(--white); border-radius: var(--radius); padding: 32px; text-align: center; border: 1px solid transparent; transition: all 0.3s; }
.pro-card:hover { border-color: var(--light-gray); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.pro-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.pro-price { font-size: 24px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.pro-price span { font-size: 13px; font-weight: 400; color: var(--mid-gray); }
.pro-note { font-size: 11px; color: var(--mid-gray); margin-bottom: 12px; }
.pro-card p { font-size: 13px; color: var(--dark-gray); line-height: 1.6; font-weight: 300; margin-bottom: 16px; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--blue); transform: translateY(-1px); }

.membership-inquiry { padding: 100px 0; background: var(--white); }
.inquiry-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.inquiry-trust { display: flex; flex-direction: column; gap: 16px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-icon { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: rgba(0,212,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--cyan); margin-top: 2px; }
.trust-item p { font-size: 14px; margin: 0; }
.inquiry-form { background: var(--off-white); border-radius: var(--radius-lg); padding: 40px; }
.inquiry-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark-gray); }
.form-label .req { color: var(--red); }
.form-input, .form-select, .form-textarea { padding: 12px 16px; border: 1.5px solid var(--light-gray); border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 14px; color: var(--black); background: var(--white); outline: none; transition: border-color 0.3s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23B8B8C0' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit { margin-top: 24px; width: 100%; padding: 16px; background: var(--black); color: var(--white); border: none; border-radius: 60px; font-family: var(--font-display); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.form-submit:hover { background: var(--blue); }
.form-message { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; line-height: 1.5; }
.form-message--success { background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); color: var(--dark-gray); }
.form-message--error { background: rgba(255,64,64,0.08); border: 1px solid rgba(255,64,64,0.2); color: var(--red); }

/* Founders popup */
.founders-popup-overlay { display: flex; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 24px; animation: popupFadeIn 0.3s ease; }
.founders-popup-overlay.hidden { display: none; }
@keyframes popupFadeIn { from { opacity: 0; } to { opacity: 1; } }
.founders-popup { background: linear-gradient(135deg, var(--black) 0%, #2A2A32 100%); border-radius: var(--radius-lg); padding: 48px; max-width: 580px; width: 100%; color: var(--white); position: relative; overflow: hidden; animation: popupSlideUp 0.4s ease; }
@keyframes popupSlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.founders-popup::before { content: '2026'; position: absolute; bottom: -20px; right: -10px; font-size: 180px; font-weight: 900; color: rgba(255,255,255,0.03); letter-spacing: -8px; pointer-events: none; }
.founders-popup-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.1); border: none; color: var(--white); width: 36px; height: 36px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.founders-popup-close:hover { background: rgba(255,255,255,0.2); }
.founders-popup h2 { font-size: 28px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.founders-popup-perks { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.founders-popup-perk { display: flex; gap: 10px; align-items: center; font-size: 14px; color: rgba(255,255,255,0.8); }
.fpp-icon { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: rgba(0,212,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--cyan); }

/* ===== 404 / ERROR ===== */
.error-page { margin-top: var(--header-h); padding: 120px 0; text-align: center; }
.error-page h1 { font-size: 64px; font-weight: 800; color: var(--light-gray); }
.error-page p { font-size: 18px; color: var(--dark-gray); margin: 16px 0 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 500px; }
  .founders-inner { grid-template-columns: 1fr; gap: 48px; }
  .content-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .directory-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .inquiry-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero { min-height: auto; }
  .hero-inner { padding: 60px 24px; }
  .hero h1 { font-size: 28px; }
  .container { padding: 0 20px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .pillars-row-3 { grid-template-columns: 1fr; }
  .pillars-row-2 { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .news-carousel, .news-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .wg-grid { grid-template-columns: 1fr; }
  .event-row { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .article-title { font-size: 26px; }
  .article-excerpt { font-size: 17px; }
  .article-meta { gap: 8px; }
  .gallery-thumb { width: 220px; }
  .article-share { flex-direction: column; align-items: flex-start; }
  .membership-hero-pillars { grid-template-columns: 1fr; }
  .pro-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .founders-popup { padding: 32px; }
}
@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .directory-grid { grid-template-columns: 1fr; }
}
