/* ════════════════════════════════════
   VARIABLES
   ════════════════════════════════════ */
:root {
  --bg:       #080b10;
  --bg2:      #0d1117;
  --bg3:      #111820;
  --surface:  #111820;
  --surface2: #18212e;
  --border:   rgba(201,168,76,.12);
  --border2:  rgba(201,168,76,.26);
  --text:     #eaedf4;
  --text2:    #8a9ab2;
  --text3:    #485870;
  --gold:     #c9a84c;
  --gold2:    #e8c97a;
  --gold3:    #a07830;
  --gold-bg:  rgba(201,168,76,.07);
  --r:        16px;
  --r-sm:     10px;
  --t:        .32s cubic-bezier(.4,0,.2,1);
  --font:     'Inter', -apple-system, sans-serif;
  --display:  'Playfair Display', Georgia, serif;
  --arabic:   'Inter', sans-serif;
}

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

::-webkit-scrollbar { width: 4px }
::-webkit-scrollbar-track { background: transparent }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px }

/* ════════════════════════════════════
   SHARED HELPERS
   ════════════════════════════════════ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px }

section { padding: 112px 0 }

.section-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -.3px;
}

.section-sub {
  font-size: .95rem;
  color: var(--text3);
  max-width: 500px;
  margin: 14px auto 0;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 64px }

.gold { color: var(--gold) }

/* ════════════════════════════════════
   NAVBAR
   ════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 22px 0;
  transition: var(--t);
}
#navbar.scrolled {
  background: rgba(8,11,16,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: .84rem; font-weight: 500;
  color: var(--text2);
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--t);
  letter-spacing: .2px;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05) }
.nav-cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { background: var(--gold2) !important; transform: none !important }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: var(--t);
}

/* ════════════════════════════════════
   HERO
   ════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% -10%,
    rgba(201,168,76,.08) 0%, transparent 70%), var(--bg);
}
#canvas { position: absolute; inset: 0; pointer-events: none; z-index: 0 }

.hero-content {
  position: relative; z-index: 1;
  text-align: center; width: 100%;
  padding: 120px 28px 80px;
  max-width: 840px;
  margin: 0 auto;
}

/* Badge — sits BELOW the name */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold-bg);
  border: 1px solid var(--border2);
  color: var(--gold);
  font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-top: 16px;
  margin-bottom: 22px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1) }
  50%      { opacity: .4; transform: scale(.7) }
}

/* Name */
.hero-name {
  font-family: var(--display);
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 0;
  display: flex; flex-direction: column; align-items: center;
}
.hero-name .first { color: var(--text) }
.hero-name .last  {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}

/* Typed role */
.hero-title {
  font-family: var(--display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .8px;
  min-height: 2rem;
  margin-bottom: 28px;
}
.cursor { animation: blink 1s step-end infinite }
@keyframes blink { 0%,100% { opacity: 1 } 50% { opacity: 0 } }

/* Pills */
.hero-pills {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-pill {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  color: var(--text2);
  font-size: .78rem; font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  transition: var(--t);
  letter-spacing: .3px;
}
.hero-pill:hover { border-color: var(--border2); color: var(--gold) }

/* Quote */
.hero-quote {
  font-family: var(--arabic);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--gold2);
  line-height: 2;
  max-width: 640px;
  margin: 0 auto 36px;
  padding: 20px 28px;
  background: var(--gold-bg);
  border-right: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  text-align: right;
  font-style: normal;
}

/* CTAs */
.hero-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--bg);
  font-size: .9rem; font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  transition: var(--t);
  letter-spacing: .3px;
  box-shadow: 0 4px 24px rgba(201,168,76,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(201,168,76,.4) }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent;
  color: var(--text2);
  font-size: .9rem; font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.14);
  transition: var(--t);
}
.btn-secondary svg { width: 16px; height: 16px }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px) }

/* Stats strip */
.hero-stats {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 24px;
  flex-wrap: wrap; gap: 0;
}
.hs-item {
  display: flex; flex-direction: column;
  align-items: center; padding: 0 20px;
}
.hs-num {
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hs-label {
  font-size: .64rem; color: var(--text3);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 4px; font-weight: 600;
}
.hs-divider { width: 1px; height: 34px; background: var(--border) }

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
}
.scroll-indicator {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%,100% { opacity: .3; transform: scaleY(1) translateY(0) }
  50%      { opacity: 1;  transform: scaleY(.8) translateY(6px) }
}

/* ════════════════════════════════════
   ABOUT
   ════════════════════════════════════ */
#about { background: var(--bg2) }

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px; align-items: start;
}

/* Avatar + ring */
.about-visual { display: flex; flex-direction: column; align-items: center }

.about-avatar {
  position: relative;
  width: 220px; height: 220px;
  margin: 0 auto 28px;
}
.avatar-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  opacity: .35;
  animation: ring-rotate 22s linear infinite;
}
@keyframes ring-rotate { to { transform: rotate(360deg) } }

.avatar-photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover; object-position: center top;
  filter: grayscale(20%) contrast(1.05);
  border: 3px solid var(--border2);
  transition: filter .5s ease;
}
.about-avatar:hover .avatar-photo { filter: grayscale(0%) contrast(1.05) }

.avatar-initials {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--border2);
  align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 3.2rem; font-weight: 700;
  color: var(--gold);
}

/* Mini stats row under avatar */
.about-card-stats {
  display: flex; gap: 12px; justify-content: center;
}
.mini-stat {
  display: flex; flex-direction: column; align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 18px;
  min-width: 72px;
}
.mini-num {
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.mini-label {
  font-size: .62rem; color: var(--text3);
  text-transform: uppercase; letter-spacing: .8px;
  margin-top: 4px; font-weight: 600;
}

/* Text column */
.about-text { padding-top: 8px }
.about-text .section-tag { margin-bottom: 10px }
.about-text .section-title { margin-bottom: 18px }

.about-desc {
  font-size: .95rem; color: var(--text2);
  line-height: 1.8; margin-bottom: 14px;
}
.about-desc strong { color: var(--text); font-weight: 600 }

.about-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.about-tags span {
  font-size: .75rem; font-weight: 600;
  padding: 5px 14px; border-radius: 100px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  color: var(--gold2); letter-spacing: .2px;
}

/* ════════════════════════════════════
   EXPERIENCE TIMELINE
   ════════════════════════════════════ */
#experience { background: var(--bg) }

.timeline {
  position: relative;
  margin-bottom: 64px;
}
/* Center spine */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border2) 10%, var(--border2) 90%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  gap: 0 36px;
  margin-bottom: 52px;
  align-items: center;
}
.timeline-item:last-child { margin-bottom: 0 }

/* Dot always in center column */
.timeline-dot {
  grid-column: 2; grid-row: 1;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--bg);
  justify-self: center; align-self: center;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 3px rgba(201,168,76,.25);
}
.dot-gold { background: var(--gold) }
.dot-xi   { background: #ff6900 }
.dot-h1   { background: #ff0000 }
.dot-sq   { background: #4f9cf9 }

/* Cards */
.timeline-item[data-side="left"]  .timeline-card { grid-column: 1; grid-row: 1 }
.timeline-item[data-side="right"] .timeline-card { grid-column: 3; grid-row: 1 }
.timeline-item[data-side="left"]  .timeline-dot  { grid-column: 2; grid-row: 1 }
.timeline-item[data-side="right"] .timeline-dot  { grid-column: 2; grid-row: 1 }

.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--t);
}
.timeline-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.featured-card { border-color: var(--border2) }
.featured-card:hover { border-color: var(--gold) }

.fc-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--gold3), var(--gold), var(--gold3));
}

/* Card inner */
.tc-header {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 20px 0;
  flex-wrap: wrap;
}
.tc-logo {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .7rem; letter-spacing: .5px;
  color: #fff; flex-shrink: 0; overflow: hidden;
}
.tc-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
  padding: 0;
  display: block;
}
.logo-tw { background: linear-gradient(135deg, #c9a84c, #7a5810) }
.logo-xi { background: transparent; padding: 0 }
.logo-h1 { background: transparent; padding: 0 }
.logo-sq { background: linear-gradient(135deg, #4f9cf9, #1a5cbf) }

.tc-meta { flex: 1; min-width: 0 }
.tc-meta h3 { font-size: .97rem; font-weight: 700; margin-bottom: 3px; color: var(--text) }
.tc-company { font-size: .81rem; color: var(--text3); font-weight: 500 }
.tc-date {
  display: inline-block;
  font-size: .72rem; color: var(--text3);
  margin-top: 3px;
}

.tc-badge {
  font-size: .61rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
  flex-shrink: 0; align-self: flex-start;
  margin-top: 2px;
}
.badge-live   { background: rgba(34,197,94,.12); color: #22c55e; border: 1px solid rgba(34,197,94,.25) }
.badge-multi  { background: var(--gold-bg); color: var(--gold); border: 1px solid var(--border2) }
.badge-global { background: rgba(99,102,241,.1); color: #818cf8; border: 1px solid rgba(99,102,241,.2) }

.tc-desc {
  font-size: .87rem; color: var(--text2);
  line-height: 1.75;
  padding: 14px 20px 0;
}
.tc-desc strong { color: var(--text); font-weight: 600 }

/* KPI strip */
.tc-kpis {
  display: flex;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin: 14px 20px 0;
  padding: 14px 16px;
}
.tc-kpi { flex: 1; text-align: center }
.tc-kpi:not(:last-child) { border-right: 1px solid var(--border) }
.tc-kpi span {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.tc-kpi small {
  display: block; font-size: .63rem;
  color: var(--text3); text-transform: uppercase;
  letter-spacing: .8px; margin-top: 4px; font-weight: 600;
}

/* Tags */
.tc-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 12px 20px 20px;
}
.tc-tags span {
  font-size: .71rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: var(--text3); letter-spacing: .2px;
}

/* ─── Marketing Partnerships ─── */
.mp-section { margin-top: 80px }
.mp-header { text-align: center; margin-bottom: 36px }
.mp-header .section-tag { margin-bottom: 8px }
.mp-sub {
  font-size: .9rem; color: var(--text3);
  max-width: 520px; margin: 0 auto;
  line-height: 1.7;
}

.mp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.mp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 14px 18px;
  text-align: center;
  transition: var(--t);
}
.mp-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.4);
}
.mp-ico {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .7rem; color: #fff;
  margin: 0 auto 12px;
}
.mp-ico img { width:100%; height:100%; object-fit:cover; padding:0; display:block; }

.sp-c { background: linear-gradient(135deg, #ec4899, #9d174d) }
.tr-c { background: linear-gradient(135deg, #8b5cf6, #5b21b6) }
.au-c { background: linear-gradient(135deg, #06b6d4, #0e7490) }
.kb-c { background: linear-gradient(135deg, #f59e0b, #b45309) }
.bm-c { background: linear-gradient(135deg, #ef4444, #991b1b) }

.mp-card h4 { font-size: .82rem; margin-bottom: 8px; color: var(--text) }
.mp-role {
  font-size: .61rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  color: var(--gold);
}

/* ════════════════════════════════════
   TWEMIX SECTION
   ════════════════════════════════════ */
#twemix { background: var(--bg2) }

.twemix-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: start;
}

/* Left — logo card */
.tw-logo-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 36px 32px;
}
.tw-logo-big {
  width: 72px; height: 72px; border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--bg);
  margin-bottom: 18px;
}
.tw-logo-card h3 {
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.tw-logo-card > p {
  font-size: .82rem; color: var(--text3);
  margin-bottom: 32px; line-height: 1.5;
}

.tw-pillars { display: flex; flex-direction: column; gap: 22px }
.tw-pillar  { display: flex; align-items: flex-start; gap: 14px }
.twp-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.twp-icon svg { width: 20px; height: 20px }
.twp-icon.mkt { background: var(--gold-bg);             border: 1px solid var(--border);              color: var(--gold) }
.twp-icon.sec { background: rgba(34,197,94,.08);        border: 1px solid rgba(34,197,94,.18);        color: #22c55e }
.twp-icon.cnt { background: rgba(99,102,241,.08);       border: 1px solid rgba(99,102,241,.18);       color: #818cf8 }
.tw-pillar div strong { display: block; font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: 3px }
.tw-pillar div span   { font-size: .81rem; color: var(--text3); line-height: 1.5 }

/* Right — creators card */
.creators-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
}
.cc-top {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 20px;
}
.cc-top h3 { font-size: 1rem; font-weight: 700; color: var(--text) }
.cc-count {
  font-size: .64rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  background: var(--gold-bg); border: 1px solid var(--border); color: var(--gold);
}
.cc-featured {
  display: flex; align-items: center; gap: 14px;
  padding: 14px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 14px;
}
.cc-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700; color: var(--text3);
  flex-shrink: 0; border: 1px solid var(--border);
  overflow: hidden; position: relative;
}
/* Photo fills the circle; initials sit behind as fallback */
.cc-av img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
  z-index: 1;
}
.cc-av-init {
  position: relative; z-index: 0;
}
.gold-av {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--bg); font-size: .76rem;
  border: none;
}
.more-av {
  background: var(--gold-bg);
  border-color: var(--border2);
  color: var(--gold);
  font-size: .62rem;
}
.cc-info strong { display: block; font-size: .9rem; color: var(--text); margin-bottom: 1px }
.cc-info span   { display: block; font-size: .78rem; color: var(--text3); font-family: var(--arabic) }
.cc-info small  { display: block; font-size: .68rem; color: var(--gold); font-weight: 600; margin-top: 3px }
.cc-others { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px }
.cc-note { font-size: .82rem; color: var(--text3); line-height: 1.65 }

.cc-roster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.cc-ritem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color .2s;
}
.cc-ritem:hover { border-color: var(--border2) }
.cc-rname {
  margin: 0;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--arabic);
  line-height: 1.3;
}
.cc-rtag {
  margin: 0;
  font-size: .65rem;
  color: var(--text3);
  margin-top: 2px;
  line-height: 1.2;
}
.cc-more {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .78rem;
  color: var(--text3);
  line-height: 1.4;
}
.cc-more-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

/* ════════════════════════════════════
   PARTNERS TABLE
   ════════════════════════════════════ */
#partners { background: var(--bg) }

.partners-table {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.pt-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
  transition: var(--t);
}
.pt-row:last-child { border-bottom: none }
.pt-row:hover { background: rgba(255,255,255,.02) }

.pt-cat {
  font-size: .67rem; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--text3); padding-right: 24px;
  line-height: 1.4;
}

.pt-logos {
  display: flex; flex-wrap: wrap;
  gap: 14px; align-items: center;
}

.pt-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 7px;
}
.pt-logo-box {
  width: 72px; height: 44px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: var(--t);
}
.pt-logo-box img {
  width: 100%; height: 100%;
  object-fit: cover; padding: 0;
  display: block;
}
.pt-card:hover .pt-logo-box {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.pt-card > span:last-child {
  font-size: .72rem; font-weight: 600;
  color: var(--text3); text-align: center;
  white-space: nowrap; max-width: 90px;
  overflow: hidden; text-overflow: ellipsis;
}

/* Government row */
.pt-gov-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  max-width: 440px;
}
.gov-icon {
  width: 38px; height: 38px;
  background: var(--gold-bg);
  border: 1px solid var(--border2);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.gov-icon svg { width: 18px; height: 18px }
.pt-gov-card strong { display: block; font-size: .88rem; color: var(--text); margin-bottom: 5px }
.pt-gov-card p { font-size: .8rem; color: var(--text3); line-height: 1.55 }

/* ════════════════════════════════════
   SKILLS
   ════════════════════════════════════ */
#skills { background: var(--bg2) }

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.skill-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 26px;
  transition: var(--t);
}
.skill-block:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,.4);
}
.skill-icon {
  width: 44px; height: 44px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.skill-icon svg { width: 20px; height: 20px }
.skill-block h3 { font-size: .97rem; margin-bottom: 8px; color: var(--text) }
.skill-block p { font-size: .84rem; color: var(--text3); line-height: 1.7; margin-bottom: 16px }

.skill-bar {
  height: 4px;
  background: var(--surface2);
  border-radius: 2px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold3), var(--gold));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* ════════════════════════════════════
   ACHIEVEMENTS
   ════════════════════════════════════ */
#achievements { background: var(--bg) }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold3), var(--gold), var(--gold3));
}
.stat-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.45);
}
.stat-num {
  font-family: var(--display);
  font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  display: inline;
}
.stat-suf {
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: .78rem; color: var(--text3);
  margin-top: 10px; line-height: 1.5;
  font-weight: 500;
}

/* ════════════════════════════════════
   CONTACT
   ════════════════════════════════════ */
#contact { background: var(--bg2) }

.contact-wrapper {
  position: relative;
  max-width: 560px; margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.contact-glow {
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 240px;
  background: radial-gradient(ellipse, rgba(201,168,76,.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact-wrapper .section-tag { margin-bottom: 8px }
.contact-wrapper .section-title { margin-bottom: 14px }
.contact-sub {
  font-size: .92rem; color: var(--text3);
  line-height: 1.7; margin-bottom: 32px;
}
.contact-actions {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.contact-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .88rem; font-weight: 700;
  padding: 13px 26px;
  border-radius: 100px;
  transition: var(--t);
  letter-spacing: .2px;
}
.contact-btn svg { width: 17px; height: 17px; flex-shrink: 0 }
.btn-li {
  background: #0a66c2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(10,102,194,.3);
}
.btn-li:hover { background: #0958a8; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,102,194,.45) }
.btn-mail {
  background: transparent;
  color: var(--text2);
  border: 1px solid rgba(255,255,255,.14);
}
.btn-mail:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px) }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
}
footer p { font-size: .78rem; color: var(--text3) }
footer a { font-size: .78rem; color: var(--text3); transition: color var(--t) }
footer a:hover { color: var(--gold) }

/* ════════════════════════════════════
   REVEAL — Progressive Enhancement
   Elements are VISIBLE by default.
   JS adds .will-animate to <html>,
   which enables the hidden state.
   ════════════════════════════════════ */
.will-animate .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1),
              transform .65s cubic-bezier(.4,0,.2,1);
}
.will-animate .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  /* About */
  .about-grid { grid-template-columns: 240px 1fr; gap: 40px }

  /* Twemix — stack */
  .twemix-grid { grid-template-columns: 1fr; gap: 28px }

  /* Marketing partnerships */
  .mp-grid { grid-template-columns: repeat(3, 1fr) }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr) }

  /* Partners table — category stacks above logos */
  .pt-row { grid-template-columns: 1fr; gap: 12px; padding: 20px 22px }
  .pt-cat { padding-right: 0 }

  /* Timeline — collapse to left-side vertical line */
  .timeline::before { left: 18px; transform: none }
  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 0 20px;
  }
  .timeline-dot { grid-column: 1 !important; grid-row: 1 !important }
  .timeline-item[data-side="left"]  .timeline-card,
  .timeline-item[data-side="right"] .timeline-card { grid-column: 2 !important }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  section { padding: 72px 0 }
  .container { padding: 0 18px }

  /* ─ Nav ─ */
  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: rgba(8,11,16,.98);
    flex-direction: column; align-items: center;
    justify-content: center; gap: 6px; z-index: 998;
  }
  .nav-links.open { display: flex }
  .nav-links.open a {
    font-size: 1.15rem; font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    width: 220px; text-align: center;
  }
  .nav-links.open a:hover { background: rgba(201,168,76,.1); color: var(--gold) }
  .hamburger { display: flex }

  /* ─ Hero ─ */
  .hero-content { padding: 100px 20px 64px }
  .hero-name { letter-spacing: -1.5px }
  .hero-badge {
    font-size: .65rem;
    letter-spacing: 1.4px;
    padding: 7px 16px;
  }
  .hero-title { font-size: 1rem; margin-bottom: 20px }
  .hero-pills { gap: 8px; margin-bottom: 22px }
  .hero-pill  { font-size: .75rem; padding: 8px 16px }
  .hero-quote { padding: 16px 20px; font-size: .95rem; margin-bottom: 28px }
  .hero-actions { gap: 10px; margin-bottom: 36px }
  .btn-primary, .btn-secondary { padding: 13px 24px; font-size: .86rem }

  /* Stats strip — 2×2 grid on mobile */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    gap: 0;
    width: 100%;
    max-width: 340px;
  }
  .hs-item { padding: 12px 8px }
  .hs-divider { display: none }
  .hs-num  { font-size: 1.4rem }
  .hs-label { font-size: .6rem }

  /* ─ About ─ */
  .about-grid { grid-template-columns: 1fr; gap: 28px }
  .about-visual { align-items: center }
  .about-text { text-align: left }
  .about-text .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem) }
  .about-tags { justify-content: flex-start }

  /* ─ Timeline ─ */
  .timeline-card { border-radius: 12px }
  .tc-header { padding: 16px 16px 0; gap: 10px }
  .tc-logo  { width: 38px; height: 38px; border-radius: 9px }
  .tc-meta h3 { font-size: .9rem }
  .tc-desc { font-size: .84rem; padding: 12px 16px 0 }
  .tc-tags { padding: 10px 16px 16px }
  .tc-kpis { margin: 12px 16px 0 }
  .timeline-item { margin-bottom: 36px }

  /* ─ Marketing partnerships ─ */
  .mp-grid { grid-template-columns: repeat(2, 1fr); gap: 10px }
  .mp-card { padding: 18px 10px 14px }

  /* ─ Twemix ─ */
  .tw-logo-card { padding: 26px 22px }
  .tw-logo-big  { width: 56px; height: 56px; font-size: 1.2rem }
  .tw-logo-card h3 { font-size: 1.3rem }

  /* ─ Partners ─ */
  .pt-logos { gap: 10px }
  .pt-logo-box { width: 64px; height: 42px }
  .pt-card > span:last-child { font-size: .68rem; max-width: 80px }

  /* ─ Skills ─ */
  .skills-grid { grid-template-columns: 1fr }
  .skill-block { padding: 22px 20px }

  /* ─ Achievements ─ */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px }
  .stat-card { padding: 28px 16px 22px }
  .stat-num  { font-size: 2.2rem }
  .stat-suf  { font-size: 1.3rem }
  .stat-label { font-size: .74rem }

  /* ─ Contact ─ */
  .contact-wrapper { padding: 40px 22px }
  .contact-wrapper .section-title { font-size: clamp(1.5rem, 5vw, 2rem) }
  .contact-actions { flex-direction: column; align-items: center }
  .contact-btn { width: 100%; max-width: 280px; justify-content: center }

  /* ─ Footer ─ */
  .footer-inner { flex-direction: column; text-align: center; gap: 10px }
}

/* ── Small phone (≤ 480px) ── */
@media (max-width: 480px) {
  section { padding: 60px 0 }

  /* Hero */
  .hero-content { padding: 88px 16px 56px }
  .hero-name { letter-spacing: -1px }
  .hero-name .last { -webkit-text-stroke: 1.5px var(--gold) }
  .hero-badge { font-size: .62rem; letter-spacing: 1px; padding: 6px 14px }
  .hero-pills { flex-direction: column; align-items: center }
  .hero-pill  { width: 100%; max-width: 260px; justify-content: center }
  .hero-quote { font-size: .88rem; padding: 14px 16px; line-height: 1.85 }
  .hero-actions { flex-direction: column; align-items: center }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center }

  /* About avatar */
  .about-avatar { width: 170px; height: 170px }
  .about-card-stats { gap: 8px }
  .mini-stat { padding: 10px 12px; min-width: 60px }
  .mini-num  { font-size: 1.1rem }

  /* Timeline */
  .timeline::before { left: 14px }
  .timeline-item { grid-template-columns: 32px 1fr; gap: 0 14px }
  .timeline-dot  { width: 12px; height: 12px }
  .tc-badge { display: none }    /* hide badge — saves space */

  /* Partners */
  .pt-logo-box { width: 56px; height: 36px }
  .pt-row { padding: 16px 16px }

  /* Marketing partnerships */
  .mp-grid { grid-template-columns: repeat(2, 1fr) }
  .mp-ico  { width: 38px; height: 38px }
  .mp-card h4 { font-size: .76rem }

  /* KPI strip */
  .tc-kpis { gap: 0 }
  .tc-kpi span { font-size: 1.1rem }

  /* Achievements */
  .stat-num { font-size: 2rem }

  /* Section headers */
  .section-title { font-size: clamp(1.5rem, 7vw, 2.2rem) }
  .section-header { margin-bottom: 40px }
}
