
:root {
  --purple: #291C56;
  --purple-mid: #3a2870;
  --purple-pale: #f0eef8;
  --pink: #F1607B;
  --blue: #74B3FF;
  --green: #67ED9E;
  --yellow: #FADD12;
  --white: #ffffff;
  --gray-bg: #f7f6fc;
  --text: #1a1a2e;
  --text-light: #5a5878;
  --border: #ddd8f0;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(41,28,86,0.08);
  --nav-h: 68px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; font-size: 16px; color: var(--text); background: var(--white); line-height: 1.7; }

/* NAV */
.site-nav { background: var(--purple); position: sticky; top: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; padding: 0 2rem; box-shadow: 0 2px 16px rgba(0,0,0,0.18); }
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { list-style: none; display: flex; gap: 0.2rem; align-items: center; flex-wrap: wrap; }
.nav-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.85rem; font-weight: 500; padding: 0.4rem 0.7rem; border-radius: 4px; transition: background 0.2s, color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.12); color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--purple-mid); border-radius: 0 0 var(--radius) var(--radius); min-width: 260px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 0.6rem 1rem; font-size: 0.82rem; }
.nav-cta { background: var(--pink) !important; color: var(--white) !important; border-radius: 20px !important; font-weight: 600 !important; }
.nav-cta:hover { background: #d94d67 !important; }

/* HAMBURGER */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* HERO */
.hero { background: var(--purple); color: var(--white); padding: 5rem 2rem 4rem; text-align: center; }
.hero-inner { max-width: 860px; margin: 0 auto; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.2; margin-bottom: 1.2rem; }
.hero p { font-size: 1.15rem; opacity: 0.88; max-width: 640px; margin: 0 auto 2rem; }
.hero-tag { display: inline-block; background: var(--pink); color: var(--white); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 1.2rem; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.7rem 1.6rem; border-radius: 24px; font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--pink); color: var(--white); }
.btn-primary:hover { background: #d94d67; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.82rem; }

/* PAGE HEADER (non-home) */
.page-header { background: var(--purple); color: var(--white); padding: 3.5rem 2rem 3rem; }
.page-header-inner { max-width: 1200px; margin: 0 auto; }
.page-header h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: 0.5rem; }
.page-header p { opacity: 0.82; font-size: 1rem; max-width: 600px; }

/* MAIN CONTENT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 4rem 0; }
.section-alt { background: var(--gray-bg); }

/* CARDS */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(41,28,86,0.13); }
.card-tag { display: inline-block; background: var(--purple-pale); color: var(--purple); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.7rem; border-radius: 12px; margin-bottom: 0.8rem; }
.card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; line-height: 1.4; }
.card h3 a { color: var(--text); text-decoration: none; }
.card h3 a:hover { color: var(--purple); }
.card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.card-meta { font-size: 0.78rem; color: var(--text-light); display: flex; gap: 1rem; align-items: center; }
.card-meta span::before { content: ''; }

/* VALUE CARDS */
.value-card { border-left: 4px solid var(--pink); }
.value-card.v2 { border-left-color: var(--blue); }
.value-card.v3 { border-left-color: var(--green); }
.value-card.v4 { border-left-color: var(--yellow); }
.value-card.v5 { border-left-color: var(--purple); }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--purple); }

/* BLOG */
.blog-card { display: flex; flex-direction: column; }
.blog-card h3 { font-size: 1rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.5rem; }
.blog-card h3 a { color: var(--text); text-decoration: none; }
.blog-card h3 a:hover { color: var(--pink); }

/* ARTICLE */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 3rem 2rem; }
.article-header { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.article-header h1 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; line-height: 1.3; margin-bottom: 0.8rem; color: var(--purple); }
.article-meta { display: flex; gap: 1.2rem; font-size: 0.82rem; color: var(--text-light); flex-wrap: wrap; }
.article-meta .dot::before { content: '·'; margin-right: 1.2rem; }
.article-body { font-size: 1rem; line-height: 1.8; }
.article-body p { margin-bottom: 1.2rem; }
.article-h2 { font-size: 1.3rem; font-weight: 700; color: var(--purple); margin: 2rem 0 0.8rem; }
.article-h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin: 1.6rem 0 0.6rem; }
.article-h4 { font-size: 1rem; font-weight: 600; margin: 1.2rem 0 0.4rem; }
.content-list { margin: 0.8rem 0 1.2rem 1.4rem; }
.content-list li { margin-bottom: 0.5rem; font-size: 0.97rem; }
blockquote { border-left: 4px solid var(--pink); padding: 0.8rem 1.2rem; background: var(--purple-pale); border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; font-style: italic; color: var(--text-light); }
.article-back { margin-bottom: 2rem; }
.article-back a { color: var(--purple); text-decoration: none; font-size: 0.88rem; font-weight: 500; }
.article-back a:hover { color: var(--pink); }

/* STAT ROW */
.stat-row { display: flex; gap: 2rem; flex-wrap: wrap; margin: 2rem 0; }
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--pink); display: block; }
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }

/* MEDIA ITEMS */
.media-item { padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.media-item:last-child { border-bottom: none; }
.media-source { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--pink); margin-bottom: 0.3rem; }
.media-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text); }
.media-item p { font-size: 0.88rem; color: var(--text-light); }
.press-release { background: var(--purple-pale); border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1rem; }
.press-release .media-source { color: var(--purple); }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.two-col.flip { }
.bio-photo-wrap { background: var(--purple-pale); border-radius: var(--radius); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bio-photo-placeholder { font-size: 4rem; opacity: 0.3; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.contact-item { background: var(--purple-pale); border-radius: var(--radius); padding: 1.6rem; text-align: center; }
.contact-item .icon { font-size: 2rem; margin-bottom: 0.6rem; }
.contact-item h3 { font-size: 0.9rem; font-weight: 700; color: var(--purple); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item a { color: var(--pink); text-decoration: none; font-size: 0.95rem; font-weight: 500; }

/* FOOTER */
.site-footer { background: var(--purple); color: rgba(255,255,255,0.75); padding: 3rem 2rem 2rem; margin-top: 4rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand img { height: 52px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* SECTION HEADERS */
.section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--pink); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--purple); margin-bottom: 0.8rem; }
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.6; }

/* ACCENT STRIP */
.accent-strip { height: 4px; background: linear-gradient(90deg, var(--pink), var(--blue), var(--green), var(--yellow)); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--purple); padding: 1rem; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-dropdown-menu { position: static; display: none; box-shadow: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-toggle { display: block; }
  .two-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .article-wrap { padding: 2rem 1.2rem; }
  .section { padding: 2.5rem 0; }
  .hero { padding: 3rem 1.2rem; }
  .page-header { padding: 2.5rem 1.2rem 2rem; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* LOGO SECTION */
.logo-section { text-align: center; padding: 1.5rem 0; }
.home-logo { height: 60px; }

/* WORK PILLARS */
.pillar-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.pillar-icon.p1 { background: rgba(241,96,123,0.12); }
.pillar-icon.p2 { background: rgba(116,179,255,0.12); }
.pillar-icon.p3 { background: rgba(103,237,158,0.12); }

/* BREADCRUMB */
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }

/* PAGINATION */
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; font-size: 0.88rem; font-weight: 500; text-decoration: none; }
.pagination a { border: 1px solid var(--border); color: var(--text); }
.pagination a:hover { background: var(--purple-pale); }
.pagination span { background: var(--purple); color: var(--white); }

/* ALERT BANNER */
.alert-banner { background: var(--yellow); color: var(--text); padding: 0.7rem 2rem; font-size: 0.85rem; font-weight: 600; text-align: center; }

/* FEATURED POST */
.featured-post { background: var(--purple); color: var(--white); border-radius: var(--radius); padding: 2rem; margin-bottom: 2rem; }
.featured-post .card-tag { background: var(--pink); color: var(--white); }
.featured-post h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.6rem; }
.featured-post p { opacity: 0.82; font-size: 0.95rem; margin-bottom: 1.2rem; }
.featured-post .card-meta { opacity: 0.65; }
