@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #050509;
  --black-soft: #0A0A12;
  --surface-1: #10101A;
  --surface-2: #171725;
  --border: #2A2A3A;
  --purple: #8B5CF6;
  --purple-deep: #5B21B6;
  --blue: #2563EB;
  --blue-electric: #38BDF8;
  --text-primary: #F7F7FB;
  --text-secondary: #B6B6C6;
  --text-muted: #7E7E91;
  --success: #36C98F;
  --gradient-brand: linear-gradient(120deg, #8B5CF6 0%, #2563EB 55%, #38BDF8 100%);
  --gradient-brand-soft: linear-gradient(120deg, rgba(139,92,246,.22), rgba(37,99,235,.16));
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

::selection { background: rgba(139,92,246,.3); color: var(--text-primary); }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }
@media (min-width: 1440px) { .container { padding: 0 72px; } }

/* ── Eyebrow ── */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

/* ── Gradient Text ── */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
}
.btn-primary:hover { transform: scale(1.02); }
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn-outline:hover { background: var(--surface-1); }

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  transition: all .3s;
  padding: 0;
}
.header.scrolled {
  background: rgba(5,5,9,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42,42,58,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
@media (min-width: 1024px) { .header-inner { height: 80px; } }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}
@media (max-width: 639px) { .logo span { display: none; } }

/* Desktop Nav */
.nav-desktop { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all .2s;
}
.nav-desktop a:hover { color: var(--text-primary); background: rgba(255,255,255,.05); }
.nav-desktop a.active { color: var(--purple); background: rgba(139,92,246,.1); }

/* Header CTA */
.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: flex; align-items: center; gap: 12px; } }
.header-cta .btn { padding: 10px 20px; font-size: 14px; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--text-primary);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  cursor: pointer;
  z-index: 110;
  position: relative;
}
.menu-toggle:hover { background: rgba(255,255,255,.14); }
@media (min-width: 1024px) { .menu-toggle { display: none !important; } }
.menu-toggle svg { width: 22px; height: 22px; flex-shrink: 0; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(5,5,9,.96);
  backdrop-filter: blur(20px);
  padding: 88px 24px 32px;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
}
.mobile-nav a:hover { color: var(--text-primary); }
.mobile-nav a.active { color: var(--purple); background: rgba(139,92,246,.1); }
.mobile-nav-cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 32px; }
.mobile-nav-cta .btn { width: 100%; padding: 16px; }

/* ── Sections ── */
section { padding: 80px 0; }
@media (min-width: 1024px) { section { padding: 112px 0; } }
.section-alt { background: var(--black-soft); }

.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}
@media (min-width: 1024px) { .section-header p { font-size: 1.125rem; } }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black), rgba(5,5,9,.8), rgba(5,5,9,.4));
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black), transparent, rgba(5,5,9,.3));
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 80px 0;
}
@media (min-width: 1024px) { .hero-content { padding: 128px 0; } }
.hero-content h1 {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-content > p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  padding: 128px 0 64px;
}
@media (min-width: 1024px) { .page-hero { padding: 160px 0 80px; } }
.page-hero.has-bg { min-height: 420px; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(5,5,9,.75);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  max-width: 720px;
  margin-bottom: 24px;
}
.page-hero > .container > p,
.page-hero-content > p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

/* ── Grid Layouts ── */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* ── Cards ── */
.card {
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-1);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.card:hover { border-color: rgba(139,92,246,.3); transform: translateY(-2px); }

/* Talent Card */
.talent-card .card-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.talent-card .card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.talent-card:hover .card-image img { transform: scale(1.04); }
.talent-card .card-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black), transparent, transparent);
  opacity: .6;
}
.talent-card .card-image-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.talent-card .card-image-content .tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--purple);
  background: rgba(139,92,246,.15);
  border-radius: 999px;
  margin-bottom: 12px;
}
.talent-card .card-image-content h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.talent-card .card-image-content p {
  font-size: 14px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.talent-card .card-footer {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.talent-card .card-footer span {
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
}

/* Event Card */
.event-card .card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.event-card .card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.event-card:hover .card-image img { transform: scale(1.04); }
.event-card .card-image .tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-electric);
  background: rgba(37,99,235,.15);
  border-radius: 999px;
}
.event-card .card-body {
  padding: 20px;
}
.event-card .card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  transition: color .2s;
}
.event-card:hover .card-body h3 { color: var(--purple); }
.event-card .card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.event-card .card-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}
.event-card .card-body .card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-card .card-body .card-link span {
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
}

/* Service Card */
.service-card {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-1);
  transition: border-color .3s, transform .3s;
}
.service-card:hover { border-color: rgba(139,92,246,.3); transform: translateY(-2px); }
.service-card .icon-box {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(139,92,246,.1);
  color: var(--purple);
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
  transition: gap .2s;
}
.service-card:hover .card-link { gap: 12px; }

/* Stat Card */
.stat-card {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border);
}
.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.stat-card .stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* Value / Feature Card */
.value-card {
  padding: 24px;
  border-radius: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border);
}
.value-card .icon-box {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(139,92,246,.1);
  color: var(--purple);
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Process Step Card */
.process-card {
  padding: 24px;
  border-radius: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border);
}
.process-card .step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(139,92,246,.2);
  margin-bottom: 16px;
}
.process-card h3 { font-size: 1rem; margin-bottom: 8px; }
.process-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Partner Logo */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  height: 80px;
  border-radius: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.partner-logo:hover { border-color: rgba(139,92,246,.2); }
.partner-logo span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

/* ── Testimonial ── */
.testimonial-card {
  padding: 32px;
  border-radius: 16px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .testimonial-card { padding: 48px; } }
.testimonial-card .quote-icon {
  color: rgba(139,92,246,.3);
  margin-bottom: 24px;
}
.testimonial-card blockquote {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.testimonial-card .author-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.testimonial-card .author-role {
  font-size: 14px;
  color: var(--text-muted);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testimonial-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s;
}
.testimonial-dots button.active { background: var(--purple); }

/* ── CTA Section ── */
.cta-section {
  padding: 80px 0;
}
@media (min-width: 1024px) { .cta-section { padding: 112px 0; } }
.cta-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 40px;
  background: var(--gradient-brand-soft);
}
@media (min-width: 1024px) { .cta-box { padding: 64px; } }
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(16,16,26,.8);
}
.cta-box-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-box h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.cta-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
@media (min-width: 1024px) { .cta-box p { font-size: 1.125rem; } }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ── Footer ── */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding: 64px 0;
}
@media (min-width: 1024px) { .footer { padding: 80px 0; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; } }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 20px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color .2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all .2s;
}
.footer-social a:hover { color: var(--purple); border-color: rgba(139,92,246,.3); }
.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p, .footer-bottom a {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Forms ── */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  transition: border-color .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(139,92,246,.5); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form-checkbox input { margin-top: 4px; accent-color: var(--purple); }
.form-checkbox span { font-size: 14px; color: var(--text-secondary); }

/* ── Contact Info ── */
.contact-card {
  padding: 24px;
  border-radius: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}
.contact-item svg { color: var(--purple); flex-shrink: 0; margin-top: 2px; }
.contact-item .label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.contact-item .value {
  font-size: 14px;
  color: var(--text-secondary);
}
.contact-item a.value:hover { color: var(--purple); }

/* Inquiry routing card */
.inquiry-card {
  display: block;
  padding: 32px;
  border-radius: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  transition: border-color .3s;
  margin-bottom: 24px;
}
.inquiry-card:hover { border-color: rgba(139,92,246,.3); }
.inquiry-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.inquiry-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.inquiry-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
}

/* ── Scope List ── */
.scope-list { display: flex; flex-direction: column; gap: 16px; }
.scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}
.scope-list li svg { color: var(--purple); flex-shrink: 0; margin-top: 2px; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  padding-top: 96px;
  padding-bottom: 16px;
}
@media (min-width: 1024px) { .breadcrumb { padding-top: 112px; } }
.breadcrumb a:hover { color: var(--text-primary); }

/* ── Detail Page Layout ── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) { .detail-grid { grid-template-columns: 2fr 1fr; gap: 64px; } }

/* ── Tags ── */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* ── Filters ── */
.filter-bar {
  position: sticky;
  top: 72px;
  z-index: 30;
  padding: 16px 0;
  background: rgba(10,10,18,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) { .filter-bar { top: 80px; } }
.filter-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.filter-buttons {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.filter-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  white-space: nowrap;
  transition: all .2s;
}
.filter-btn:hover { background: var(--surface-1); color: var(--text-primary); }
.filter-btn.active { background: var(--purple); color: #fff; }

/* ── Success State ── */
.success-state {
  text-align: center;
  padding: 80px 0;
  max-width: 480px;
  margin: 0 auto;
}
.success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(54,201,143,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
}
.success-state h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.success-state p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: repeat(2, 1fr); gap: 80px; } }

/* ── Animations (GSAP) ── */
/* ── Utilities ── */
.reveal { opacity: 0; transform: translateY(30px); }

/* Word Mask Reveal */
.word-mask {
  display: inline-flex;
  overflow: hidden;
  vertical-align: top;
  padding: 0.2em 0;
  margin: -0.2em 0;
}
.word-mask-inner {
  display: inline-block;
  transform: translateY(110%);
}

/* ── SVG Icons ── */
.icon { width: 20px; height: 20px; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }
.header.is-open { background: rgba(5,5,9,.98); }
.header.is-open .nav-desktop {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(5,5,9,.98);
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
}
.header.is-open .nav-desktop a { font-size: 1.125rem; padding: 12px; width: 100%; text-align: center; }
